我在本地脚本中使用STRSPLIT时出现以下错误
Could not resolve STRSPLIT using imports: [, org.apache.pig.builtin., org.apache.pig.impl.builtin.]
我在本地系统上运行pig并通过-x local执行。
如何获得STRSPLIT的正确导入?
修改
这是我正在使用的脚本
A0 = FOREACH A GENERATE FLATTEN(STRSPLIT(flash_version, '_')) as (major:int, minor:int), userid, resH, resW;
猪版
Apache Pig版本0.7.0(r941408)