Force disable interpreting expressions without template to check if some tests fail

This commit is contained in:
Alexander Tokmakov 2019-05-24 06:13:18 +03:00 committed by Alexander Tokmakov
parent 46effbd7f6
commit e32ed075c8

View File

@ -41,6 +41,7 @@ ValuesBlockInputStream::ValuesBlockInputStream(ReadBuffer & istr_, const Block &
templates.resize(header.columns());
/// In this format, BOM at beginning of stream cannot be confused with value, so it is safe to skip it.
skipBOMIfExists(istr);
const_cast<FormatSettings&>(this->format_settings).values.interpret_expressions = false;
}
Block ValuesBlockInputStream::readImpl()