pgsql: Allow non-btree speculative insertion indexes - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Allow non-btree speculative insertion indexes
Date
Msg-id E1tgLeb-005pY3-HO@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Allow non-btree speculative insertion indexes

Previously, only btrees were supported as the arbiter index for
speculative insertion because there was no way to get the equality
strategy number for other index methods.  We have this now (commit
c09e5a6a016), so we can support this.

At the moment, only btree supports unique indexes, so this does not
change anything in practice, but it would allow another index method
that has amcanunique to be supported.

Co-authored-by: Mark Dilger <mark.dilger@enterprisedb.com>
Discussion: https://www.postgresql.org/message-id/flat/E72EAA49-354D-4C2E-8EB9-255197F55330@enterprisedb.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b92c03342dcd69d259262b06b5c290e27249cb11

Modified Files
--------------
src/backend/catalog/index.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Virtual generated columns