【2019-07-29】spark 1.5不支持函数replace

问题描述

spark1.5中,使用spark-sql无法使用replace函数

问题原因

目前版本兼容性问题

解决措施

spark不支持replace函数。
使用regexp_replace替代。

select regexp_replace(id,"1","222") from zzltest2 limit 1;

你可能感兴趣的:(【2019-07-29】spark 1.5不支持函数replace)