(self)
| 48 | |
| 49 | @property |
| 50 | def default_querystrings(self) -> Sequence[QueryString]: |
| 51 | table: type[Table] = self.table |
| 52 | |
| 53 | query = table.select( |
| 54 | CountFunction(column=self.column, distinct=self._distinct) |
| 55 | ) |
| 56 | |
| 57 | query.where_delegate._where = self.where_delegate._where |
| 58 | |
| 59 | return query.querystrings |
| 60 | |
| 61 | |
| 62 | Self = TypeVar("Self", bound=Count) |