Skip to content

Commit f057562

Browse files
committed
Fix rebase issue with pg_dump
use our newly-preferred "pg_malloc_object"
1 parent 0ce1983 commit f057562

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/bin/pg_dump/common.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -622,11 +622,7 @@ flagInhAttrs(DumpOptions *dopt, TableInfo *tblinfo, int numTables)
622622
{
623623
AttrDefInfo *attrDef;
624624

625-
<<<<<<< HEAD
626-
attrDef = (AttrDefInfo *) malloc(sizeof(AttrDefInfo));
627-
=======
628625
attrDef = pg_malloc_object(AttrDefInfo);
629-
>>>>>>> REL_16_9
630626
attrDef->dobj.objType = DO_ATTRDEF;
631627
attrDef->dobj.catId.tableoid = 0;
632628
attrDef->dobj.catId.oid = 0;

0 commit comments

Comments
 (0)