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
Fix FindTable to handle dot-separated path elements (#235)
When using backtick-quoted fully qualified table names like
`project.dataset.table`, ZetaSQL may parse the entire string as a
single path element rather than splitting it into three separate
elements. This causes FindTable to fail when looking up tables that
were created with such paths.
This change adds a fallback that normalizes the path by splitting
dot-separated elements when the initial lookup fails. This allows
DROP TABLE to work correctly for tables created with fully qualified
backtick-quoted names.