問題の Hive クエリ スニペットは次のとおりです。
group by
case
when inte.subId is not null then 'int'
else 'ext'
end,
taskType,
result
grouping sets(
(
case
when inte.subId is not null then 'int'
else 'ext'
end, -- line 36
taskType,
result
), -- line 39
(
taskType,
result
)
)
ログは、36 行目と 39 行目に構文エラーがあることを示しています。
FAILED: ParseException line 36:7 missing ) at ',' near ')'
line 39:3 missing EOF at ',' near ')'
何か案が?私からさらに情報が必要な場合は、お気軽にコメントしてください。