Commit cee850c4 authored by Bruce Momjian's avatar Bruce Momjian

revert 4d0d607a

Revert due to contrib/test_decoding regression failure
parent 2362c2bd
......@@ -897,7 +897,7 @@ logical_heap_rewrite_flush_mappings(RewriteState state)
/* write all mappings consecutively */
len = src->num_mappings * sizeof(LogicalRewriteMappingData);
waldata = MemoryContextAlloc(state->rs_cxt, len);
waldata = palloc(len);
waldata_start = waldata;
/*
......@@ -943,7 +943,6 @@ logical_heap_rewrite_flush_mappings(RewriteState state)
/* write xlog record */
XLogInsert(RM_HEAP2_ID, XLOG_HEAP2_REWRITE, rdata);
pfree(waldata);
}
Assert(state->rs_num_rewrite_mappings == 0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment