From f6ab431f2f036514aa5c53680f27e96a4e04f1e1 Mon Sep 17 00:00:00 2001 From: Avogar Date: Fri, 19 Jun 2020 17:50:44 +0300 Subject: [PATCH] Change String type to Binary --- src/Processors/Formats/Impl/ORCBlockOutputFormat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Processors/Formats/Impl/ORCBlockOutputFormat.cpp b/src/Processors/Formats/Impl/ORCBlockOutputFormat.cpp index 77cdf1c352b..7400c30306b 100644 --- a/src/Processors/Formats/Impl/ORCBlockOutputFormat.cpp +++ b/src/Processors/Formats/Impl/ORCBlockOutputFormat.cpp @@ -98,7 +98,7 @@ ORC_UNIQUE_PTR 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: {