Expand description
Tests for query/SQL-related features
This module covers query grammar rules:
- where_clause - Filtering with .where()
- group_by_clause - Grouping with .group()
- having_clause - Post-aggregation filtering with .having()
- order_by_clause - Sorting with .orderBy()
- limit_clause - Limiting results with .limit()
- join_clause - Joining data sources
- on_clause - Timeframe context blocks
- pipe_expr - Pipe operator for data transformation
- named_arg - Named function arguments
- try_operator - Error propagation with ?