foo_ids
是类型的数组 bigint
,但整个数组可以为空。如果数组为null,则我需要一个空数组。
如果我这样做: COALESCE(foo_ids, ARRAY())
我得到: FAILED: SemanticException [Error 10016]: Line 13:45 Argument type mismatch 'ARRAY': The expressions after COALESCE should all have the same type: "array<bigint>" is expected but "array<string>" is found
如果我这样做: COALESCE(foo_ids, ARRAY<BIGINT>())
我得到一个语法错误: FAILED: ParseException line 13:59 cannot recognize input near ')' ')' 'AS' in expression specification
这里的正确语法是什么?
1条答案
按热度按时间doinxwow1#
使用这个:
合并(foo\u id,数组(cast(null为bigint)))
之前,配置单元将空数组[]视为[]。但是在hadoop2中,hive现在将空数组[]显示为null(参见下面的参考)。对bigint类型的空数组使用array(cast(null为bigint))。奇怪的是,空数组的大小是-1(而不是0)。希望这有帮助。谢谢。
参考文献:https://docs.treasuredata.com/articles/hive-change-201602