Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Create table as select issue Unsupported type 'null_type' impala

avatar
Frequent Visitor

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,

 

1 ACCEPTED SOLUTION

avatar
Super Collaborator

Hi Davood,

 

Impala needs a column type for column3 and NULL does not allow the planner to infer the type. Using a cast to specify the type will work: create table v as select i, cast(null as int) as j from t;

 

Cheers, Lars

View solution in original post

1 REPLY 1

avatar
Super Collaborator

Hi Davood,

 

Impala needs a column type for column3 and NULL does not allow the planner to infer the type. Using a cast to specify the type will work: create table v as select i, cast(null as int) as j from t;

 

Cheers, Lars