(self, table_criterio_tuple: TableCriterionTuple)
| 168 | return joins[-1][0] |
| 169 | |
| 170 | def _join_table(self, table_criterio_tuple: TableCriterionTuple) -> None: |
| 171 | if table_criterio_tuple[0] not in self._joined_tables: |
| 172 | self.query = self.query.join(table_criterio_tuple[0], how=JoinType.left_outer).on( |
| 173 | table_criterio_tuple[1] |
| 174 | ) |
| 175 | self._joined_tables.append(table_criterio_tuple[0]) |
| 176 | |
| 177 | @staticmethod |
| 178 | def _resolve_ordering_string(ordering: str, reverse: bool = False) -> tuple[str, Order]: |
no outgoing calls
no test coverage detected