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
Add lambda support for APPLY transformer on * and COLUMNS()
Adds support for lambda expressions in APPLY transformers:
- `* APPLY x -> toString(x)`
- `COLUMNS(...) APPLY x -> expr`
Previously only simple function names were supported (e.g., `* APPLY toString`).
This adds:
- ApplyLambda field to ast.ColumnTransformer struct
- Lambda detection and parsing in parseAsteriskApply and parseColumnsApply
Fixes 14 statements in 02378_analyzer_projection_names (16→2 pending) and
improves several other tests.
0 commit comments