Hive|hive concat的坑 参数有一个为null时结果也为null

hive> selectconcat('status_cd',null) ;
OK
NULL
Time taken: 0.078 seconds, Fetched: 1 row(s)


hive> selectconcat('status_cd','1') ;
OK
status_cd1
Time taken: 2.501 seconds, Fetched: 1 row(s)
hive>


【Hive|hive concat的坑 参数有一个为null时结果也为null】hive> selectconcat(null,'1')
> ;
OK
NULL
Time taken: 0.068 seconds, Fetched: 1 row(s)
hive>

版本 Hive 2.0.0-SNAPSHOT

    推荐阅读