File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
tests/deploy_layouts/roles/postgres/tasks Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ static void DtmMergeWithGlobalSnapshot(Snapshot dst)
270
270
memcpy (dst -> xip + dst -> xcnt , src -> xip , src -> xcnt * sizeof (TransactionId ));
271
271
n = dst -> xcnt + src -> xcnt ;
272
272
273
- qsort (dst -> xip , n , sizeof (TransactionId ), xidComparator );
273
+ // qsort(dst->xip, n, sizeof(TransactionId), xidComparator);
274
274
xid = InvalidTransactionId ;
275
275
276
276
for (i = 0 , j = 0 ; i < n && dst -> xip [i ] < dst -> xmax ; i ++ )
@@ -285,7 +285,7 @@ static void DtmMergeWithGlobalSnapshot(Snapshot dst)
285
285
memcpy (dst -> subxip + dst -> subxcnt + dst -> xcnt , src -> xip , src -> xcnt * sizeof (TransactionId ));
286
286
n = dst -> xcnt + dst -> subxcnt + src -> xcnt ;
287
287
288
- qsort (dst -> subxip , n , sizeof (TransactionId ), xidComparator );
288
+ // qsort(dst->subxip, n, sizeof(TransactionId), xidComparator);
289
289
xid = InvalidTransactionId ;
290
290
291
291
for (i = 0 , j = 0 ; i < n && dst -> subxip [i ] < dst -> xmax ; i ++ )
Original file line number Diff line number Diff line change 60
60
when : (pg_copydist is undefined) and pg_sources.changed
61
61
62
62
- name : build and install
63
- shell : ./configure --prefix={{pg_dst}} --without-zlib && make clean && make -j {{makejobs}} && make install
63
+ shell : ./configure --prefix={{pg_dst}} --enable-debug -- without-zlib && make clean && make -j {{makejobs}} && make install
64
64
args :
65
65
chdir : " {{pg_src}}"
66
66
creates : " {{pg_dst}}/bin/postgres"
67
- when : pg_copydist is undefined
67
+ # when: pg_copydist is undefined
68
68
69
69
# ############################################################################
70
70
You can’t perform that action at this time.
0 commit comments