fix comments

This commit is contained in:
kevinyhzou 2024-11-13 12:16:22 +08:00
parent 4ea106712f
commit 5e4dd5d32a

View File

@ -742,7 +742,6 @@ namespace
for (size_t i = 0; i < input_rows_count; ++i)
{
datetime.reset();
StringRef str_ref = col_str->getDataAt(i);
Pos cur = str_ref.data;
Pos end = str_ref.data + str_ref.size;
@ -769,12 +768,14 @@ namespace
{
res_data[i] = 0;
error = true;
break;
}
else if constexpr (error_handling == ErrorHandling::Null)
{
res_data[i] = 0;
col_null_map->getData()[i] = 1;
error = true;
break;
}
else
{