Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
Creating new table in hive via Hue
create external table test_1 (`id` bigint) comment "test comment";
When we execute this command from hive to alter existing table comment:
ALTER TABLE test_1 SET TBLPROPERTIES ('comment' = 'new_comment');
From atlas UI comment:"new_comment" is updated only for parameter section:
---------{}{}Snippet{}{}-----------
parameters
{
last_modified_time: "1725612239",
numRows: "0",
rawDataSize: "0",
transient_lastDdlTime: "1725612239",
bucketing_version: "2",
last_modified_by: "admin",
numFilesErasureCoded: "0",
totalSize: "0",
EXTERNAL: "TRUE",
COLUMN_STATS_ACCURATE: "{"BASIC_STATS":"true","COLUMN_STATS":{"id":"true"}}",
numFiles: "0",
comment: "new_comment"
}
---------{}{}Snippet{}{}-----------
But the modified comment value is not updated on UI
comment test comment