This is an automated email from the ASF dual-hosted git repository.

changchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git


The following commit(s) were added to refs/heads/main by this push:
     new 60427553d [GLUTEN-1632][CH]Daily Update Clickhouse Version (20240308) 
(#4890)
60427553d is described below

commit 60427553d9de24e90f6381114beef14103135c1e
Author: Wenzheng Liu <[email protected]>
AuthorDate: Fri Mar 8 15:56:03 2024 +0800

    [GLUTEN-1632][CH]Daily Update Clickhouse Version (20240308) (#4890)
    
    * Fix Build due to https://github.com/ClickHouse/ClickHouse/pull/60730
    
    * [GLUTEN-1632][CH]Daily Update Clickhouse Version (20240308)
    
    ---------
    
    Co-authored-by: Chang Chen <[email protected]>
---
 cpp-ch/clickhouse.version                                       | 4 ++--
 cpp-ch/local-engine/Functions/SparkFunctionRegexpExtractAll.cpp | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/cpp-ch/clickhouse.version b/cpp-ch/clickhouse.version
index 121686dda..4604a045f 100644
--- a/cpp-ch/clickhouse.version
+++ b/cpp-ch/clickhouse.version
@@ -1,3 +1,3 @@
 CH_ORG=Kyligence
-CH_BRANCH=rebase_ch/20240305
-CH_COMMIT=905638bd08d
+CH_BRANCH=rebase_ch/20240308
+CH_COMMIT=5ed149dd725
\ No newline at end of file
diff --git a/cpp-ch/local-engine/Functions/SparkFunctionRegexpExtractAll.cpp 
b/cpp-ch/local-engine/Functions/SparkFunctionRegexpExtractAll.cpp
index e64a75a5a..ca4f10020 100644
--- a/cpp-ch/local-engine/Functions/SparkFunctionRegexpExtractAll.cpp
+++ b/cpp-ch/local-engine/Functions/SparkFunctionRegexpExtractAll.cpp
@@ -70,12 +70,12 @@ namespace
                     arguments.size());
 
             FunctionArgumentDescriptors args{
-                {"haystack", &isString<IDataType>, nullptr, "String"},
-                {"pattern", &isString<IDataType>, isColumnConst, "const 
String"},
+                {"haystack", 
static_cast<FunctionArgumentDescriptor::TypeValidator>(&isString), nullptr, 
"String"},
+                {"pattern", 
static_cast<FunctionArgumentDescriptor::TypeValidator>(&isString), 
isColumnConst, "const String"},
             };
 
             if (arguments.size() == 3)
-                args.emplace_back(FunctionArgumentDescriptor{"index", 
&isInteger<IDataType>, nullptr, "Integer"});
+                args.emplace_back(FunctionArgumentDescriptor{"index", 
static_cast<FunctionArgumentDescriptor::TypeValidator>(&isInteger), nullptr, 
"Integer"});
 
             validateFunctionArgumentTypes(*this, arguments, args);
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to