i have a parquet file stored in hdfs called small in path:
/user/s/file.parquet
and want to create a table in hive containing it's content.
the schema of the file is very complected and i want hive to automatically import the schema from the file.
i want to do something like this:
CREATE EXTERNAL TABLE tableName
STORED AS PARQUET
LOCATION 'file/path'
is this possible?
thank you for your help.