You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@calcite.apache.org by "Lai Zhou (JIRA)" <ji...@apache.org> on 2019/03/28 04:59:00 UTC

[jira] [Created] (CALCITE-2960) CalciteCatalogReader use a hard-coding config to get functions

Lai Zhou created CALCITE-2960:
---------------------------------

             Summary: CalciteCatalogReader use a hard-coding config to get functions
                 Key: CALCITE-2960
                 URL: https://issues.apache.org/jira/browse/CALCITE-2960
             Project: Calcite
          Issue Type: Bug
          Components: core
    Affects Versions: 1.18.0
            Reporter: Lai Zhou


CalciteCatalogReader use a hard-coding config to get functions
{code:java}
functions2.addAll(schema.getFunctions(name, true));
{code}
the right way is:
{code:java}
functions2.addAll(schema.getFunctions(name, config.caseSensitive()));
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)