| 1299 | |
| 1300 | |
| 1301 | class Query(Blockwise): |
| 1302 | _parameters = ["frame", "_expr", "expr_kwargs"] |
| 1303 | _defaults: dict[str, Any] = {"expr_kwargs": {}} # type: ignore[dict-item] |
| 1304 | _keyword_only = ["expr_kwargs"] |
| 1305 | operation = M.query |
| 1306 | |
| 1307 | @functools.cached_property |
| 1308 | def _kwargs(self) -> dict: |
| 1309 | return {**self.expr_kwargs} |
| 1310 | |
| 1311 | |
| 1312 | class MemoryUsagePerPartition(Blockwise): |