1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

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.
This commit is contained in:
Andrew Gierth
2018-04-08 06:02:05 +01:00
parent d234602c28
commit 49b0e300f7
5 changed files with 185 additions and 62 deletions

View File

@ -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>