mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
fix comments
This commit is contained in:
parent
4ea106712f
commit
5e4dd5d32a
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user