You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
spanner_dbapi is incorrectly classifying the following query as STMT_UPDATING due to the initial bracket:
(SELECT some_table.id, some_table.x, some_table.y
FROM some_table
WHERE some_table.id = 2 ORDER BY some_table.id
LIMIT 1) UNION DISTINCT (SELECT some_table.id, some_table.x, some_table.y
FROM some_table
WHERE some_table.id = 3 ORDER BY some_table.id
LIMIT 1) ORDER BY id
LIMIT 2
It looks like the SQL parsing RE expressions may need some work to handle queries which include brackets.