make NULL case consistent w/FieldVisitorToString

This commit is contained in:
Alexander Kuzmenkov 2021-03-05 10:05:27 +03:00
parent 7c8d17045c
commit 6b9d1f67a3

View File

@ -452,7 +452,7 @@ template <> bool decimalLessOrEqual(DateTime64 x, DateTime64 y, UInt32 x_scale,
inline void writeText(const Null &, WriteBuffer & buf)
{
writeText(std::string("Null"), buf);
writeText(std::string("NULL"), buf);
}
String toString(const Field & x)