[解决]Hive执行语句:Unable to create temp file for insert values Expression of type TOK_FUNCTION not suppor

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/kwu_ganymede/article/details/64442896

Hive中支持insert语句


执行

insert into mb_loan_crm_data values(100, '13122595406', null, 'nwdnmvsm5', '测试用户', null, null, 23, null, null, null, null, 1, null, unix_timestamp(), 1, null, null, unix_timestamp(), 1, null, 1, null, unix_timestamp(), 1, 1, 1, 1, unix_timestamp(), 1, 1, 1, 1, 1, 1)

出现异常

Unable to create temp file for insert values Expression of type TOK_FUNCTION not suppor


修改为:

insert into mb_loan_crm_data  select  100, '13122595406', null, 'nwdnmvsm5', '测试用户', null, null, 23.1, null, null, null, null, 1, null, unix_timestamp(), 1.1, null, null, unix_timestamp(), 1.0, null, 1.0, null, unix_timestamp(), 1.0, 1.0, 1.0, 1.0, unix_timestamp(), 1, 1, 1, 1, 1, 1;

通过

猜你喜欢

转载自blog.csdn.net/kwu_ganymede/article/details/64442896