Hi i having a issue while creating table as select from an another table.
CREATE TABLE <database>.table1 as
select
column1 ,
column 2,
NULL as column3
from
<databse>.table2
;
it is throwing below err
Unsupported type 'null_type' in column 'column3' of table 'table2'
CAUSED BY: TableLoadingException: Unsupported type 'null_type' in column 'column3' of table 'table2'
can anyone help me here.
thanks,