mirror of
https://github.com/postgres/postgres.git
synced 2026-02-25 19:02:00 -05:00
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
This commit is contained in:
parent
563d575fd7
commit
06e184876b
1 changed files with 1 additions and 1 deletions
|
|
@ -1808,7 +1808,7 @@ describeOneTableDetails(const char *schemaname,
|
|||
}
|
||||
|
||||
/* Make footers */
|
||||
if (pset.sversion >= 90600)
|
||||
if (pset.sversion >= 100000)
|
||||
{
|
||||
/* Get the partition information */
|
||||
PGresult *result;
|
||||
|
|
|
|||
Loading…
Reference in a new issue