Query failed Function unix_timestamp not registered

问题描述

在一个业务场景下,需要将字符串转换成时间戳然后按时间戳大小排序,故使用unix_timestamp函数,问题中很明显提到这个unix_timestamp函数未被注册,意思就是不支持这个函数,我注意到这个函数在Hive中可以运行,但是在Presto中无法运行。

解决办法

将语句进行修改:
select sql from job_table order by preority,unix_timestamp(create_time)
修改为:
select * from hive.default.job_table order by preority desc,to_unixtime(cast (create_time as timestamp));

presto是支持to_unixtime(cast (create_time as timestamp)函数的。

你可能感兴趣的:(疑难杂症)