Fix pg_dump version comparison

I missed a '0' in the version number string ...

Per buildfarm member crake.
This commit is contained in:
Alvaro Herrera 2018-01-19 13:23:49 -03:00
parent 189d0ff588
commit 42b5856038
1 changed files with 1 additions and 1 deletions

View File

@ -6565,7 +6565,7 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
* is not.
*/
resetPQExpBuffer(query);
if (fout->remoteVersion >= 11000)
if (fout->remoteVersion >= 110000)
{
appendPQExpBuffer(query,
"SELECT t.tableoid, t.oid, "