You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Vladimir Ozerov (Jira)" <ji...@apache.org> on 2021/03/13 11:02:00 UTC

[jira] [Updated] (CALCITE-4535) ServerDdlExecutor cannot execute DROP commands with qualified object names

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

Vladimir Ozerov updated CALCITE-4535:
-------------------------------------
    Description: 
Consider the query {{DROP TABLE s.t}}. The {{ServerDdlExecutor}} will attempt to resolve the default schema path, and the would try to invoke {{SqlIdentifier.getSimple}} on the {{s.t}} identifier. When assertions are enabled this would lead to an AssertionError. When assertions are disabled this would lead to an incorrectly resolved table name: {{s}} instead of {{t}}.

All {{DROP}} commands are affected.

  was:Consider the query {{DROP TABLE s.t}}. The {{ServerDdlExecutor}} will attempt to resolve the default schema path, and the would try to invoke {{SqlIdentifier.getSimple}} on the {{s.t}} identifier. When assertions are enabled this would lead to an AssertionError. When assertions are disabled this would lead to an incorrectly resolved table name: {{s}} instead of {{t}}.


> ServerDdlExecutor cannot execute DROP commands with qualified object names
> --------------------------------------------------------------------------
>
>                 Key: CALCITE-4535
>                 URL: https://issues.apache.org/jira/browse/CALCITE-4535
>             Project: Calcite
>          Issue Type: Improvement
>          Components: server
>    Affects Versions: 1.26.0
>            Reporter: Vladimir Ozerov
>            Assignee: Vladimir Ozerov
>            Priority: Major
>
> Consider the query {{DROP TABLE s.t}}. The {{ServerDdlExecutor}} will attempt to resolve the default schema path, and the would try to invoke {{SqlIdentifier.getSimple}} on the {{s.t}} identifier. When assertions are enabled this would lead to an AssertionError. When assertions are disabled this would lead to an incorrectly resolved table name: {{s}} instead of {{t}}.
> All {{DROP}} commands are affected.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)