mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-09 01:27:20 +08:00
Removed join according to https://github.com/yiisoft/yii2/issues/7958#issuecomment-88872600
This commit is contained in:
@ -263,7 +263,6 @@ FROM (
|
|||||||
SELECT *, generate_subscripts(indkey, 1) AS k
|
SELECT *, generate_subscripts(indkey, 1) AS k
|
||||||
FROM pg_index
|
FROM pg_index
|
||||||
) idx
|
) idx
|
||||||
INNER JOIN generate_subscripts(idx.indkey, 1) AS k ON 1=1
|
|
||||||
INNER JOIN pg_class i ON i.oid = idx.indexrelid
|
INNER JOIN pg_class i ON i.oid = idx.indexrelid
|
||||||
INNER JOIN pg_class c ON c.oid = idx.indrelid
|
INNER JOIN pg_class c ON c.oid = idx.indrelid
|
||||||
INNER JOIN pg_namespace ns ON c.relnamespace = ns.oid
|
INNER JOIN pg_namespace ns ON c.relnamespace = ns.oid
|
||||||
|
|||||||
Reference in New Issue
Block a user