[Refactor]Merged string_value into string_ref (#15925)

This commit is contained in:
ZhaoChangle
2023-01-22 16:39:23 +08:00
committed by GitHub
parent b9872ceb98
commit 199d7d3be8
133 changed files with 1485 additions and 1607 deletions

View File

@ -310,8 +310,7 @@ TEST_F(BitmapFunctionsTest, test_bitmap_intersect) {
date_time_value.to_datetime_val(&datetime2);
test_bitmap_intersect<DateTimeVal, DateTimeValue>(ctx, datetime1, datetime2);
test_bitmap_intersect<StringVal, StringValue>(ctx, StringVal("20191211"),
StringVal("20191212"));
test_bitmap_intersect<StringVal, StringRef>(ctx, StringVal("20191211"), StringVal("20191212"));
}
TEST_F(BitmapFunctionsTest, bitmap_or) {