Get current WHERE clause for SQL
(self)
| 455 | return " AND ".join(filter_parts) if filter_parts else "No filters applied" |
| 456 | |
| 457 | def get_current_where_clause(self) -> str: |
| 458 | """Get current WHERE clause for SQL""" |
| 459 | if self.current_frame: |
| 460 | return self.current_frame.to_where_clause() |
| 461 | return "1=1" |
| 462 | |
| 463 | def get_current_group_cols(self) -> List[str]: |
| 464 | """Get current grouping columns""" |