Fix build

This commit is contained in:
Kruglov Pavel 2021-11-02 16:09:20 +03:00 committed by GitHub
parent 3b12c54bf9
commit 1d2f197e70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -464,7 +464,7 @@ ReturnType SerializationNullable::deserializeTextCSVImpl(IColumn & column, ReadB
/// This is not null, surely.
return safeDeserialize<ReturnType>(column, *nested_serialization,
[] { return false; },
[&nested_serialization, &istr, &settings] (IColumn & nested_column) { nested->deserializeTextCSV(nested_column, istr, settings); });
[&nested_serialization, &istr, &settings] (IColumn & nested_column) { nested_serialization->deserializeTextCSV(nested_column, istr, settings); });
}
/// Check if we have enough data in buffer to check if it's a null.