Explain case sensitivity of Impala SQL function names
ianmcook opened this issue · 1 comments
ianmcook commented
This works:
flights %>%
group_by(origin) %>%
summarise(NDV(dest))
but only if NDV()
is uppercase. The README should explain why this is, because function names in Impala SQL are case-insensitive.