Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-50904][SQL] Fix collation expression walker query execution
### What changes were proposed in this pull request? Changing when we collect results in `CollationExpressionWalkerSuite` on borders of changing session default collation. ### Why are the changes needed? Because we are analyzing the query and then setting a different default collation, this leads to problems for runtime replaceable expressions which will only be resolved when we call `collect` and by then the session default collation is changed. This is blocking the change in #49576. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? This is a test-only change. ### Was this patch authored or co-authored using generative AI tooling? No Closes #49586 from stefankandic/fixExpressionWalker. Authored-by: Stefan Kandic <[email protected]> Signed-off-by: Max Gekk <[email protected]>
- Loading branch information