mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Fix pg_dump version comparison
I missed a '0' in the version number string ... Per buildfarm member crake.
This commit is contained in:
@ -6565,7 +6565,7 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
|
|||||||
* is not.
|
* is not.
|
||||||
*/
|
*/
|
||||||
resetPQExpBuffer(query);
|
resetPQExpBuffer(query);
|
||||||
if (fout->remoteVersion >= 11000)
|
if (fout->remoteVersion >= 110000)
|
||||||
{
|
{
|
||||||
appendPQExpBuffer(query,
|
appendPQExpBuffer(query,
|
||||||
"SELECT t.tableoid, t.oid, "
|
"SELECT t.tableoid, t.oid, "
|
||||||
|
Reference in New Issue
Block a user