Support of Nullable types in MySQL tables

fix code style
This commit is contained in:
Emmanuel Donin de Rosière 2019-02-07 10:46:11 +01:00
parent 4de40e438e
commit fd5656963d

View File

@ -79,7 +79,7 @@ DataTypePtr getDataType(const String & mysql_data_type, bool is_nullable, bool i
else
/// Also String is fallback for all unknown types.
res = std::make_shared<DataTypeString>();
if(is_nullable)
if (is_nullable)
res = std::make_shared<DataTypeNullable>(res);
return res;
}