Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support collation in position function #9601

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion dbms/src/Flash/Coprocessor/DAGUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ const std::unordered_map<tipb::ScalarFuncSig, String> scalar_func_map({
{tipb::ScalarFuncSig::LeftUTF8, "leftUTF8"},
//{tipb::ScalarFuncSig::Left, "cast"},
{tipb::ScalarFuncSig::Length, "length"},
{tipb::ScalarFuncSig::Locate2ArgsUTF8, "position"},
{tipb::ScalarFuncSig::Locate2ArgsUTF8, "positionUTF8"},
//{tipb::ScalarFuncSig::Locate3ArgsUTF8, "cast"},
{tipb::ScalarFuncSig::Locate2Args, "position"},
//{tipb::ScalarFuncSig::Locate3Args, "cast"},
Expand Down
Loading