feat(index): implement GIN index support for quoted text columns and enhance index column resolution

This commit is contained in:
2026-05-05 11:32:15 +02:00
parent 53ff745d5d
commit 608893a3d6
5 changed files with 105 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ BEGIN
SELECT tc.constraint_name,
COALESCE(
ARRAY(
SELECT a.attname
SELECT a.attname::text
FROM pg_constraint c
JOIN pg_class t ON t.oid = c.conrelid
JOIN pg_namespace n ON n.oid = t.relnamespace