Skip to content

Commit 791ef00

Browse files
committed
pg_dump: Fix harmless type mixup
1 parent 2440c44 commit 791ef00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_dump/pg_dump.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7953,7 +7953,7 @@ getTableAttrs(Archive *fout, TableInfo *tblinfo, int numTables)
79537953
tbinfo->attstattarget = (int *) pg_malloc(ntups * sizeof(int));
79547954
tbinfo->attstorage = (char *) pg_malloc(ntups * sizeof(char));
79557955
tbinfo->typstorage = (char *) pg_malloc(ntups * sizeof(char));
7956-
tbinfo->attidentity = (char *) pg_malloc(ntups * sizeof(bool));
7956+
tbinfo->attidentity = (char *) pg_malloc(ntups * sizeof(char));
79577957
tbinfo->attisdropped = (bool *) pg_malloc(ntups * sizeof(bool));
79587958
tbinfo->attlen = (int *) pg_malloc(ntups * sizeof(int));
79597959
tbinfo->attalign = (char *) pg_malloc(ntups * sizeof(char));

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy