You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@calcite.apache.org by "Julian Hyde (Jira)" <ji...@apache.org> on 2020/09/05 03:35:00 UTC

[jira] [Created] (CALCITE-4230) In Babel for BigQuery, split quoted table names that contain dots

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)