ajantha-bhat commented on a change in pull request #3173: [CARBONDATA-3351] Support Binary Data Type
URL:
https://github.com/apache/carbondata/pull/3173#discussion_r275629596
##########
File path: core/src/main/java/org/apache/carbondata/core/util/CarbonUtil.java
##########
@@ -2179,7 +2179,11 @@ static DataType thriftDataTypeToWrapperDataType(
return DataTypes.FLOAT;
case BYTE:
return DataTypes.BYTE;
+ case BINARY:
+ return DataTypes.BINARY;
default:
+ LOGGER.warn(String.format("It can't match the data type, so use default data type: %s",
Review comment:
modify log message to "cannot match the data type, using default String datatype", no need of "it"
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[hidden email]
With regards,
Apache Git Services