Commit 06e18487 authored by Robert Haas's avatar Robert Haas

psql: Fix incorrect version check for table partitining.

Table partitioning was added in 10, not 9.6.

Fabrízio de Royes Mello, per report from Jeff Janes
parent 563d575f
...@@ -1808,7 +1808,7 @@ describeOneTableDetails(const char *schemaname, ...@@ -1808,7 +1808,7 @@ describeOneTableDetails(const char *schemaname,
} }
/* Make footers */ /* Make footers */
if (pset.sversion >= 90600) if (pset.sversion >= 100000)
{ {
/* Get the partition information */ /* Get the partition information */
PGresult *result; PGresult *result;
......
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