]> granicus.if.org Git - postgresql/commitdiff
psql: Fix incorrect version check for table partitining.
authorRobert Haas <rhaas@postgresql.org>
Mon, 12 Dec 2016 16:54:14 +0000 (11:54 -0500)
committerRobert Haas <rhaas@postgresql.org>
Mon, 12 Dec 2016 16:57:58 +0000 (11:57 -0500)
Table partitioning was added in 10, not 9.6.

Fabrízio de Royes Mello, per report from Jeff Janes

src/bin/psql/describe.c

index f0d955be4f025c478c68a5427bfa7882d6789415..a582a37953945bb2776635ea5487a5059030f9a6 100644 (file)
@@ -1808,7 +1808,7 @@ describeOneTableDetails(const char *schemaname,
        }
 
        /* Make footers */
-       if (pset.sversion >= 90600)
+       if (pset.sversion >= 100000)
        {
                /* Get the partition information  */
                PGresult   *result;