Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit791ef00

Browse files
committed
pg_dump: Fix harmless type mixup
1 parent2440c44 commit791ef00

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)

[8]ページ先頭

©2009-2025 Movatter.jp