[Improvement] fix typo (#9743)

This commit is contained in:
Gabriel
2022-05-25 19:29:01 +08:00
committed by GitHub
parent f5bef328fe
commit 8470543144
9 changed files with 76 additions and 76 deletions

View File

@ -57,9 +57,9 @@ TEST(IfNullTest, String_Int_Test) {
std::string func_name = "ifnull";
InputTypeSet input_types = {TypeIndex::DateTime, TypeIndex::DateTime};
DataSet data_set = {{{std::string("2021-10-24 12:32:31"), std::string("2021-10-24 13:00:01")},
str_to_data_time("2021-10-24 12:32:31")},
str_to_date_time("2021-10-24 12:32:31")},
{{Null(), std::string("2021-10-24 13:00:01")},
str_to_data_time("2021-10-24 13:00:01")}};
str_to_date_time("2021-10-24 13:00:01")}};
check_function<DataTypeDateTime, true>(func_name, input_types, data_set);
}