v.21.9Improvement
Remove GLOBAL Keyword for IN with Scalar Functions
Remove GLOBAL keyword for IN when scalar function is passed. In previous versions, if user specified GLOBAL IN f(x) exception was thrown. #26217 (Amos Bird).Why it matters
Previously, usingGLOBAL IN f(x) where f(x) is a scalar function caused an exception. This change improves query stability and correctness by disallowing an invalid syntax that caused errors.How to use it
Avoid using theGLOBAL keyword with IN when the right-hand side is a scalar function. Instead, just use IN f(x) without the GLOBAL modifier.