Revert "[fix](function) to_bitmap parameter parsing failure returns null instead of bitmap_empty (#21236)" (#23368)

This reverts commit 1c3cc77a54938ed948ad8186b8dea8385977d23c.
This commit is contained in:
zclllyybb
2023-08-23 18:27:35 +08:00
committed by GitHub
parent 4c751202e3
commit 51ac92f65c
9 changed files with 57 additions and 101 deletions

View File

@ -27,7 +27,6 @@
#include "testutil/any_type.h"
#include "util/bitmap_value.h"
#include "vec/core/types.h"
#include "vec/data_types/data_type_bitmap.h"
#include "vec/data_types/data_type_nullable.h"
#include "vec/data_types/data_type_number.h"
#include "vec/data_types/data_type_string.h"
@ -208,30 +207,4 @@ TEST(function_bitmap_test, function_bitmap_has_all) {
check_function<DataTypeUInt8, true>(func_name, input_types, data_set);
}
TEST(function_bitmap_test, function_to_bitmap) {
std::string func_name = "to_bitmap";
InputTypeSet input_types = {TypeIndex::String};
BitmapValue bitmap1(1);
DataSet data_set = {{{std::string("1")}, &bitmap1},
{{std::string("-1")}, Null()},
{{std::string("1.11")}, Null()},
{{Null()}, Null()}};
check_function<DataTypeBitMap, true>(func_name, input_types, data_set);
}
TEST(function_bitmap_test, function_bitmap_from_string) {
std::string func_name = "bitmap_from_string";
InputTypeSet input_types = {TypeIndex::String};
BitmapValue bitmap1(1);
DataSet data_set = {{{std::string("1")}, &bitmap1},
{{std::string("-1")}, Null()},
{{std::string("1.11")}, Null()},
{{Null()}, Null()}};
check_function<DataTypeBitMap, true>(func_name, input_types, data_set);
}
} // namespace doris::vectorized