Reputation: 18657
Given table of format:
hive> describe tableA;
OK
id int
ts timestamp
var float
... ...
I would like to utilise a solution similar to the one discussed by @interskh converting all columns to strings without knowing and explicitly referring to column names.
On the lines of the syntax:
ALTER TABLE tableA CHANGE <<all columnns>> string
Upvotes: 1
Views: 2084