Does Atlas 0.5 support ALTER statements in Hive Bridge or is it reflected in a later version?
These statements don't seem to be reflected in schema for table.
ALTER TABLE test SET TBLPROPERTIES ("comment"="test comment");
ALTER TABLE test CHANGE a a string comment 'test column comment';
ALTER TABLE test add COLUMNS (b string comment 'test column comment 2');
In addition, transient_lastDdlTime is set to Jan 17, 1970.
This statement shows updated metadata.
CREATE TABLE test2 (b string comment 'test column comment 2');
thanks,
Andrew