Julian Hyde created CALCITE-4230:
------------------------------------
Summary: In Babel for BigQuery, split quoted table names that
contain dots
Key: CALCITE-4230
URL: https://issues.apache.org/jira/browse/CALCITE-4230
Project: Calcite
Issue Type: Bug
Reporter: Julian Hyde
In Babel for BigQuery, split quoted table names that contain dots. The
following three are equivalent:
{code}
select * from `bigquery-public-data`.`samples`.`natality`;
select * from `bigquery-public-data.samples.natality`;
select * from bigquery-public-data.samples.natality;
{code}
After this change, Babel will return the same parse tree for all 3 queries.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)