嗨,我是 Hive 的新手,我想将当前时间戳与一行数据一起插入到我的表中。
这是我的团队表的示例:
team_id int
fname string
lname string
time timestamp
我看过其他一些例子,如何将时间戳插入 Hive 表?,如何在 hive 中添加时间戳列,但似乎无法使其正常工作。这就是我正在尝试的:
insert into team values('101','jim','joe',from_unixtime(unix_timestamp()));
我得到的错误是:
FAILED: SemanticException [Error 10293]: Unable to create temp file for insert values Expression of type TOK_FUNCTION not supported in insert/values
如果有人可以提供帮助,那就太好了,非常感谢frostie