[
https://issues.apache.org/jira/browse/CALCITE-4230?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Julian Hyde resolved CALCITE-4230.
----------------------------------
Fix Version/s: 1.26.0
Resolution: Fixed
Fixed in
[5c012c59|https://github.com/apache/calcite/commit/5c012c5985c0064a8f0742cfb63f80b235c2e9fa].
> 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
> Components: babel
> Reporter: Julian Hyde
> Assignee: Julian Hyde
> Priority: Major
> Labels: pull-request-available
> Fix For: 1.26.0
>
> Time Spent: 40m
> Remaining Estimate: 0h
>
> When parsing SQL in BigQuery dialect, split quoted table names that contain
> dots. The following three are equivalent:
> {code:java}
> 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.
> (The third will require CALCITE-4246.)
> To control this feature, in {{interface SqlConformance}}, add method
> {{boolean splitQuotedTableName()}}.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)