You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@calcite.apache.org by "TANG Wen-hui (Jira)" <ji...@apache.org> on 2020/06/22 11:50:00 UTC

[jira] [Created] (CALCITE-4079) Remove the deprecated code from SqlDialect

TANG Wen-hui created CALCITE-4079:
-------------------------------------

             Summary: Remove the deprecated code from SqlDialect
                 Key: CALCITE-4079
                 URL: https://issues.apache.org/jira/browse/CALCITE-4079
             Project: Calcite
          Issue Type: Improvement
          Components: core
    Affects Versions: 1.23.0
            Reporter: TANG Wen-hui


{code:java}
/** @deprecated Use {@link AnsiSqlDialect#DEFAULT} instead. */
@Deprecated // to be removed before 2.0
public static final SqlDialect DUMMY =
    AnsiSqlDialect.DEFAULT;

/** @deprecated Use {@link CalciteSqlDialect#DEFAULT} instead. */
@Deprecated // to be removed before 2.0
public static final SqlDialect CALCITE =
    CalciteSqlDialect.DEFAULT;{code}
SqlDialect#DUMMY and SqlDialect#CALCITE are marked deprecated and have not be used in any places.
It would be better to remove them to avoid class initialization deadlock.



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