Method
__init__
(
self,
_table: table.Table,
_grouping_columns: tuple[expr.InternalColRef, ...],
_last_column_is_instance: bool,
_set_id: bool = False,
_sort_by: expr.InternalColRef | None = None,
_filter_out_results_of_forgetting: bool = False,
_skip_errors: bool = True,
_is_window: bool = False,
)
Source from the content-addressed store, hash-verified
| 96 | _is_window: bool |
| 97 | |
| 98 | def __init__( |
| 99 | self, |
| 100 | _table: table.Table, |
| 101 | _grouping_columns: tuple[expr.InternalColRef, ...], |
| 102 | _last_column_is_instance: bool, |
| 103 | _set_id: bool = False, |
| 104 | _sort_by: expr.InternalColRef | None = None, |
| 105 | _filter_out_results_of_forgetting: bool = False, |
| 106 | _skip_errors: bool = True, |
| 107 | _is_window: bool = False, |
| 108 | ): |
| 109 | super().__init__(Universe(), {thisclass.this: self}, _table) |
| 110 | self._grouping_columns = StableSet(_grouping_columns) |
| 111 | self._last_column_is_instance = _last_column_is_instance |
| 112 | self._set_id = _set_id |
| 113 | self._sort_by = _sort_by |
| 114 | self._filter_out_results_of_forgetting = _filter_out_results_of_forgetting |
| 115 | self._skip_errors = _skip_errors |
| 116 | self._is_window = _is_window |
| 117 | |
| 118 | @classmethod |
| 119 | def create( |
Tested by
no test coverage detected