[ https://issues.apache.org/jira/browse/HIVE-24834?focusedWorklogId=558376&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-558376 ]
ASF GitHub Bot logged work on HIVE-24834: ----------------------------------------- Author: ASF GitHub Bot Created on: 26/Feb/21 03:21 Start Date: 26/Feb/21 03:21 Worklog Time Spent: 10m Work Description: ChangjiGuo opened a new pull request #2024: URL: https://github.com/apache/hive/pull/2024 When using kafka-handler to create a kafka table, no matter whether the user specifies column comment or not, the comment will become 'from deserializer' when the 'show create table' command is used to view the table structure. It is worth noting that I am not very familiar with hive. Can someone help me review whether the modification of HiveMetaStoreUtils.java has any side effects? ---------------------------------------------------------------- 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: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 558376) Remaining Estimate: 0h Time Spent: 10m > Cannot add comment for kafka table > ---------------------------------- > > Key: HIVE-24834 > URL: https://issues.apache.org/jira/browse/HIVE-24834 > Project: Hive > Issue Type: Bug > Components: kafka integration > Affects Versions: 2.3.7 > Reporter: ChangjiGuo > Assignee: ChangjiGuo > Priority: Major > Time Spent: 10m > Remaining Estimate: 0h > > when using kafka-handler to create a kafka table, no matter whether the user > specifies column comment or not, the comment will become 'from deserializer' > when the 'show create table' command is used to view the table structure. > You can refer to the following example: > {code:sql} > CREATE EXTERNAL TABLE `kafka_table`( > `id` string, > `info` string comment 'comment 1', > `jsoninfo` struct<id:string,info:string> comment 'comment 2') > ROW FORMAT SERDE > 'org.apache.hadoop.hive.kafka.KafkaSerDe' > STORED BY > 'org.apache.hadoop.hive.kafka.KafkaStorageHandler' > WITH SERDEPROPERTIES ( > 'serialization.format'='1') > LOCATION > 'hdfs://offlinehdfs/user/hive/warehouse/kafka_table' > TBLPROPERTIES ( > 'properties.bootstrap.servers'='xxxx', > 'topic'='xxxx' > ..........) > {code} > The result is as follows: > {code:sql} > CREATE EXTERNAL TABLE `kafka_table`( > `id` string COMMENT 'from deserializer', > `info` string COMMENT 'from deserializer', > `jsoninfo` struct<id:string,info:string> COMMENT 'from deserializer', > `__key` binary COMMENT 'from deserializer', > `__partition` int COMMENT 'from deserializer', > `__offset` bigint COMMENT 'from deserializer', > `__timestamp` bigint COMMENT 'from deserializer') > ROW FORMAT SERDE > 'org.apache.hadoop.hive.kafka.KafkaSerDe' > STORED BY > 'org.apache.hadoop.hive.kafka.KafkaStorageHandler' > WITH SERDEPROPERTIES ( > 'serialization.format'='1') > LOCATION > 'hdfs://offlinehdfs/user/hive/warehouse/kafka_table' > TBLPROPERTIES ( > .......) > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)