diff options
author | atarasov5 <[email protected]> | 2025-08-14 10:29:14 +0300 |
---|---|---|
committer | atarasov5 <[email protected]> | 2025-08-14 10:44:46 +0300 |
commit | f132db24bdf6dc23b539c87283d4c32d0bc4154b (patch) | |
tree | fd3542827091fb20f21fc3fa22bf7e47f757538e /yql/essentials/sql/v1/builtin.cpp | |
parent | c29c15d2a51aabf8c2c33010027c7726c2debfa2 (diff) |
YQL-18878: Introduce Re2::IsValidRegexp
commit_hash:44a39f94ad6f9407cb9e493cbf88ef28b320586e
Diffstat (limited to 'yql/essentials/sql/v1/builtin.cpp')
-rw-r--r-- | yql/essentials/sql/v1/builtin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/sql/v1/builtin.cpp b/yql/essentials/sql/v1/builtin.cpp index 995f31d7328..d2a368be60f 100644 --- a/yql/essentials/sql/v1/builtin.cpp +++ b/yql/essentials/sql/v1/builtin.cpp @@ -3476,7 +3476,7 @@ TNodePtr BuildBuiltinFunc(TContext& ctx, TPosition pos, TString name, const TVec }; auto fullName = moduleName + "." + name; return new TYqlTypeConfigUdf(pos, fullName, multiArgs, multiArgs.size() + 1); - } else if (!(ns.StartsWith("re2") && lowerName == "options")) { + } else if (!(ns.StartsWith("re2") && (lowerName == "options" || lowerName == "isvalidregexp"))) { auto newArgs = args; if (ns.StartsWith("re2")) { // convert run config is tuple of string and optional options |