projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
563d575
)
psql: Fix incorrect version check for table partitining.
author
Robert Haas
<rhaas@postgresql.org>
Mon, 12 Dec 2016 16:54:14 +0000
(11:54 -0500)
committer
Robert 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
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/describe.c
b/src/bin/psql/describe.c
index f0d955be4f025c478c68a5427bfa7882d6789415..a582a37953945bb2776635ea5487a5059030f9a6 100644
(file)
--- 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 >=
906
00)
+ if (pset.sversion >=
1000
00)
{
/* Get the partition information */
PGresult *result;