fix: subquery alias in RLS (#34374)

This commit is contained in:
Beto Dealmeida
2025-07-28 22:58:15 -04:00
committed by GitHub
parent 914ce9aa4f
commit 122bb68e5a
3 changed files with 38 additions and 11 deletions

View File

@@ -259,13 +259,13 @@ FROM (
FROM t1
WHERE
c1 = 1
) AS t1, (
) AS "t1", (
SELECT
*
FROM t2
WHERE
c2 = 2
) AS t2
) AS "t2"
""".strip()
)