Change String type to Binary

This commit is contained in:
Avogar 2020-06-19 17:50:44 +03:00
parent 07ad947c1d
commit f6ab431f2f

View File

@ -98,7 +98,7 @@ ORC_UNIQUE_PTR<orc::Type> ORCBlockOutputFormat::getORCType(const DataTypePtr & t
case TypeIndex::FixedString: [[fallthrough]];
case TypeIndex::String:
{
return orc::createPrimitiveType(orc::TypeKind::STRING);
return orc::createPrimitiveType(orc::TypeKind::BINARY);
}
case TypeIndex::Nullable:
{