diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-12-12 11:54:14 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-12-12 11:57:58 -0500 |
commit | 06e184876bc07c2b1d7144957dcf02c5b4f709c2 (patch) | |
tree | 1c5f8652ef63f583ee5bcb622f9f47bc6b12ef0d | |
parent | 563d575fd73361f6118c13f2816988eba8e1f657 (diff) | |
download | postgresql-06e184876bc07c2b1d7144957dcf02c5b4f709c2.tar.gz postgresql-06e184876bc07c2b1d7144957dcf02c5b4f709c2.zip |
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
-rw-r--r-- | src/bin/psql/describe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index f0d955be4f0..a582a379539 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -1808,7 +1808,7 @@ describeOneTableDetails(const char *schemaname, } /* Make footers */ - if (pset.sversion >= 90600) + if (pset.sversion >= 100000) { /* Get the partition information */ PGresult *result; |