[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

@ -48,10 +48,10 @@ TEST(NullIfTest, String_Int_Test) {
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")},
{{std::string("2021-10-24 13:00:01"), std::string("2021-10-24 13:00:01")}, Null()},
{{std::string("2021-10-24 13:00:01"), Null()},
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);
}