Get current grouping columns
(self)
| 461 | return "1=1" |
| 462 | |
| 463 | def get_current_group_cols(self) -> List[str]: |
| 464 | """Get current grouping columns""" |
| 465 | if self.current_frame: |
| 466 | return self.current_frame.group_cols |
| 467 | return [] |
| 468 | |
| 469 | def can_back_out(self) -> bool: |
| 470 | """Check if back-out is possible""" |
no outgoing calls