@@ -959,22 +959,14 @@ void init_executor_shared_data(schd_executor_share_t *data, scheduler_manager_ct
959
959
strcpy (data -> database , ctx -> database );
960
960
else
961
961
elog (ERROR , "String \"%s\"\n"
962
- <<<<<<< HEAD
963
- "has %zu symbols, while it should have less than %d symbols." ,
964
- = == == ==
965
- "has %d symbols, while it should have less than %d symbols." ,
966
- >>>>>>> PGPROEE10
962
+ "has %lu symbols, while it should have less than %d symbols." ,
967
963
ctx -> database , strlen (ctx -> database ), PGPRO_SCHEDULER_DBNAME_MAX );
968
964
969
965
if (strlen (job -> node ) < PGPRO_SCHEDULER_NODENAME_MAX )
970
966
strcpy (data -> nodename , job -> node );
971
967
else
972
968
elog (ERROR , "String \"%s\"\n"
973
- <<<<<<< HEAD
974
- "has %zu symbols, while it should have less than %d symbols." ,
975
- = == == ==
976
- "has %d symbols, while it should have less than %d symbols." ,
977
- >>>>>>> PGPROEE10
969
+ "has %lu symbols, while it should have less than %d symbols." ,
978
970
job -> node , strlen (job -> node ), PGPRO_SCHEDULER_NODENAME_MAX );
979
971
980
972
data -> new_job = true;
@@ -1804,30 +1796,18 @@ int start_at_worker(scheduler_manager_ctx_t *ctx, int pos)
1804
1796
item -> res_owner = CurrentResourceOwner ;
1805
1797
shm_data = dsm_segment_address (item -> shared );
1806
1798
1807
- <<<<<<< HEAD
1808
- == = == ==
1809
-
1810
- >>>>>>> PGPROEE10
1811
1799
if (strlen (ctx -> database ) < PGPRO_SCHEDULER_DBNAME_MAX )
1812
1800
strcpy (shm_data -> database , ctx -> database );
1813
1801
else
1814
1802
elog (ERROR , "String \"%s\"\n"
1815
- <<<<<<< HEAD
1816
- "has %zu symbols, while it should have less than %d symbols." ,
1817
- = == == ==
1818
- "has %d symbols, while it should have less than %d symbols." ,
1819
- >>>>>>> PGPROEE10
1803
+ "has %lu symbols, while it should have less than %d symbols." ,
1820
1804
ctx -> database , strlen (ctx -> database ), PGPRO_SCHEDULER_DBNAME_MAX );
1821
1805
1822
1806
if (strlen (ctx -> nodename ) < PGPRO_SCHEDULER_NODENAME_MAX )
1823
1807
strcpy (shm_data -> nodename , ctx -> nodename );
1824
1808
else
1825
1809
elog (ERROR , "String \"%s\"\n"
1826
- <<<<<<< HEAD
1827
- "has %zu symbols, while it should have less than %d symbols." ,
1828
- = == == ==
1829
- "has %d symbols, while it should have less than %d symbols." ,
1830
- >>>>>>> PGPROEE10
1810
+ "has %lu symbols, while it should have less than %d symbols." ,
1831
1811
ctx -> nodename , strlen (ctx -> nodename ), PGPRO_SCHEDULER_NODENAME_MAX );
1832
1812
1833
1813
shm_data -> stop_worker = false;
0 commit comments