You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Closes#1799 This was kind of a nasty one. The query flattening
optimization was far too aggressive. @toryhaavik Do you feel
comfortable reviewing this? One downside to this fix is that
simple, single expression columns are not flattened into their
subquery anymore. This will be addressed in the future after the
compiler is refactored.
Author: Phillip Cloud <cpcloud@gmail.com>
Closes#1812 from cpcloud/mutate-chain-bug and squashes the following commits:
31dedd6 [Phillip Cloud] BUG: Chained mutate operations give wrong results
Mutate function is giving wrong output. Please check below sample example.
For the above program output is :
SELECT isnull(a, 'Short Term') ASa,bFROM t0instead of
SELECT isnull(a, 'Short Term') ASa, isnull(b, 'Short Term') ASbFROM t0Let me know if anything is wrong in my understanding.
The text was updated successfully, but these errors were encountered: