Teradata has the concept of lastaltertimestamp
, which is the last time an alter table
command was executed on a table. lastaltertimestamp
can be queried. Does Hive have a similar value that can be queried?
The timestamp returned by hdfs dfs -ls /my/hive/file
does not reflect alter table
commands, so alter table
must not modify the file backing Hive file. describe formatted
does not provide a last-alter-timestamp either.
Thanks