diff options
author | Andrew Gierth <rhodiumtoad@postgresql.org> | 2018-04-08 06:02:05 +0100 |
---|---|---|
committer | Andrew Gierth <rhodiumtoad@postgresql.org> | 2018-04-08 06:02:05 +0100 |
commit | 49b0e300f7dd56b092c0046ee29dc2b15beea9a8 (patch) | |
tree | 40121d0919fa5d199b1f4714f02fdca19f99c592 /doc/src | |
parent | d234602c28e8e1baea342602dbb404cee9fde47e (diff) |
Support index INCLUDE in the AM properties interface.
This rectifies an oversight in commit 8224de4f4, by adding a new
property 'can_include' for pg_indexam_has_property, and adjusting the
results of pg_index_column_has_property to give more appropriate
results for INCLUDEd columns.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 3dbfa1dec34..3bf21477adb 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -17555,6 +17555,12 @@ SELECT currval(pg_get_serial_sequence('sometable', 'id')); <entry>Does the access method support exclusion constraints? </entry> </row> + <row> + <entry><literal>can_include</literal></entry> + <entry>Does the access method support the <literal>INCLUDE</literal> + clause of <literal>CREATE INDEX</literal>? + </entry> + </row> </tbody> </tgroup> </table> |