Re: Hive LLAP Macro and Window Function

2018-06-27 Thread Gopal Vijayaraghavan
> When LLAP Execution Mode is set to 'only' you can't have a macro and window > function in the same select statement. The "only" part isn't enforced for the simple select query, but is enforced for the complex one (the PTF one). > select col_1, col_2 from macro_bug where otrim(col_1) is not

Re: Hive LLAP Macro and Window Function

2018-06-27 Thread Gopal Vijayaraghavan
> When LLAP Execution Mode is set to 'only' you can't have a macro and window function in the same select statement. The "only" part isn't enforced for the simple select query, but is enforced for the complex one (the PTF one). > select col_1, col_2 from macro_bug where

Hive LLAP Macro and Window Function

2018-06-27 Thread Shawn Weeks
Trying to figure out if the following is a bug or expected behavior. When LLAP Execution Mode is set to 'only' you can't have a macro and window function in the same select statement. However you can have a macro or a window function without an issue. Below is a test case. use default;