This is an automated email from the ASF dual-hosted git repository. lwz9103 pushed a commit to branch liquid in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
commit 6545958861fb05728e15273ef284f4af8146ae85 Author: Chang Chen <[email protected]> AuthorDate: Sat Jul 20 00:26:56 2024 +0800 [CH] Fix build, see https://github.com/apache/incubator-gluten/pull/6511 for details (cherry picked from commit 665a400c6aaa0742ebebdac785b120e875df3f03) --- .../AggregateFunctions/KeAggregateBitmapFunctions.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp-ch/local-engine/AggregateFunctions/KeAggregateBitmapFunctions.cpp b/cpp-ch/local-engine/AggregateFunctions/KeAggregateBitmapFunctions.cpp index 2747895af2..2879a8e77d 100644 --- a/cpp-ch/local-engine/AggregateFunctions/KeAggregateBitmapFunctions.cpp +++ b/cpp-ch/local-engine/AggregateFunctions/KeAggregateBitmapFunctions.cpp @@ -114,9 +114,9 @@ AggregateFunctionPtr createKeAggregateBitmapAndIdsFunction( void registerKeAggregateFunctionsBitmap(AggregateFunctionFactory & factory) { AggregateFunctionProperties properties = { .returns_default_when_only_null = true }; - factory.registerFunction("ke_bitmap_or_cardinality", {createKeAggregateBitmapOrCardinalityFunction, properties}, AggregateFunctionFactory::CaseInsensitive); - factory.registerFunction("ke_bitmap_or_data", {createKeAggregateBitmapOrDataFunction, properties}, AggregateFunctionFactory::CaseInsensitive); - factory.registerFunction("ke_bitmap_and_value", { createKeAggregateBitmapAndValueFunction, properties}, AggregateFunctionFactory::CaseInsensitive); - factory.registerFunction("ke_bitmap_and_ids", {createKeAggregateBitmapAndIdsFunction, properties}, AggregateFunctionFactory::CaseInsensitive); + factory.registerFunction("ke_bitmap_or_cardinality", {createKeAggregateBitmapOrCardinalityFunction, properties}, AggregateFunctionFactory::Case::Insensitive); + factory.registerFunction("ke_bitmap_or_data", {createKeAggregateBitmapOrDataFunction, properties}, AggregateFunctionFactory::Case::Insensitive); + factory.registerFunction("ke_bitmap_and_value", { createKeAggregateBitmapAndValueFunction, properties}, AggregateFunctionFactory::Case::Insensitive); + factory.registerFunction("ke_bitmap_and_ids", {createKeAggregateBitmapAndIdsFunction, properties}, AggregateFunctionFactory::Case::Insensitive); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
