Fixed error in prev. revision [#CLICKHOUSE-2]

This commit is contained in:
Alexey Milovidov 2018-01-23 22:43:06 +03:00
parent b8cb9267c7
commit 6a60a6dbde
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ BlockIO InterpreterExistsQuery::execute()
Block InterpreterExistsQuery::getSampleBlock()
{
return {{ nullptr, std::make_shared<DataTypeUInt8>(), "result" }};
return {{ std::make_shared<DataTypeUInt8>(), "result" }};
}

View File

@ -27,7 +27,7 @@ BlockIO InterpreterShowCreateQuery::execute()
Block InterpreterShowCreateQuery::getSampleBlock()
{
return {{ nullptr, std::make_shared<DataTypeString>(), "statement" }};
return {{ std::make_shared<DataTypeString>(), "statement" }};
}