projects
/
users
/
simon
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce07744
)
Fix pg_dump bug in the database-level collation patch. "datcollate" and
author
Heikki Linnakangas
<
[email protected]
>
Wed, 24 Sep 2008 19:33:15 +0000
(19:33 +0000)
committer
Heikki Linnakangas
<
[email protected]
>
Wed, 24 Sep 2008 19:33:15 +0000
(19:33 +0000)
"datctype" columns were misspelled. Per report from Chris Browne.
src/bin/pg_dump/pg_dump.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_dump/pg_dump.c
b/src/bin/pg_dump/pg_dump.c
index 6a31dccc35c9802b5b42bf08f58d82529871a7e2..6c0f8278f92a0d6d7ea79d9f6599abc8e2835228 100644
(file)
--- a/
src/bin/pg_dump/pg_dump.c
+++ b/
src/bin/pg_dump/pg_dump.c
@@
-1653,8
+1653,8
@@
dumpDatabase(Archive *AH)
i_oid = PQfnumber(res, "oid");
i_dba = PQfnumber(res, "dba");
i_encoding = PQfnumber(res, "encoding");
- i_collate = PQfnumber(res, "collate");
- i_ctype = PQfnumber(res, "ctype");
+ i_collate = PQfnumber(res, "
dat
collate");
+ i_ctype = PQfnumber(res, "
dat
ctype");
i_tablespace = PQfnumber(res, "tablespace");
dbCatId.tableoid = atooid(PQgetvalue(res, 0, i_tableoid));