Commit 42b58560 authored by Alvaro Herrera's avatar Alvaro Herrera

Fix pg_dump version comparison

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

Per buildfarm member crake.
parent 189d0ff5
......@@ -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, "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment