Description
In Hive the schema and partition columns must be disjoint sets, if hive table which all columns are partitioned columns, so that other columns is empty, it will fail when Hive create table, error msg as follow:
`
throw new HiveException(
"at least one column must be specified for the table")
`
So when creating a Hive table, fail early if all the columns are partitioned columns,