We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a8f4075 + ffe908a commit 4db050fCopy full SHA for 4db050f
indexes/fk_no_index.sql
@@ -61,7 +61,12 @@ fk_index_match AS (
61
JOIN fk_cols_list USING (fkoid)
62
LEFT OUTER JOIN index_list
63
ON conrelid = indrelid
64
+<<<<<<< HEAD
65
AND (indkey::int2[])[0:(array_length(key_cols,1) -1)] @> key_cols
66
+=======
67
+ -- lower bound of indkey is known to be 0
68
+ AND (indkey::int2[])[0:array_length(key_cols,1) -1] @> key_cols
69
+>>>>>>> ffe908a21bff958ff4debd7160c00565ccbf5fa5
70
),
71
fk_perfect_match AS (
72
SELECT fkoid
0 commit comments