[ 
https://issues.apache.org/jira/browse/CALCITE-4230?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Hyde updated CALCITE-4230:
---------------------------------
    Description: 
When parsing SQL in BigQuery dialect, 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.

  was:
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.


> When parsing SQL in BigQuery dialect, 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
>            Assignee: Julian Hyde
>            Priority: Major
>
> When parsing SQL in BigQuery dialect, 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)

Reply via email to