projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
189d0ff
)
Fix pg_dump version comparison
author
Alvaro Herrera
<alvherre@alvh.no-ip.org>
Fri, 19 Jan 2018 16:23:49 +0000
(13:23 -0300)
committer
Alvaro Herrera
<alvherre@alvh.no-ip.org>
Fri, 19 Jan 2018 16:24:54 +0000
(13:24 -0300)
I missed a '0' in the version number string ...
Per buildfarm member crake.
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 af2d03ed19d145689d7096caab6e3a44f5e537e6..0bdd3982feae37901b4979c0bc2129ed73cf455d 100644
(file)
--- a/
src/bin/pg_dump/pg_dump.c
+++ b/
src/bin/pg_dump/pg_dump.c
@@
-6565,7
+6565,7
@@
getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
* is not.
*/
resetPQExpBuffer(query);
- if (fout->remoteVersion >= 11000)
+ if (fout->remoteVersion >= 11000
0
)
{
appendPQExpBuffer(query,
"SELECT t.tableoid, t.oid, "