(self, item: ExecutableStatement)
| 1661 | return {} |
| 1662 | |
| 1663 | def _add_to_params(self, item: ExecutableStatement) -> None: |
| 1664 | # assumes that this is called before traversing the statement |
| 1665 | # so the call happens outer to inner, meaning that existing params |
| 1666 | # take precedence |
| 1667 | if item._params: |
| 1668 | self._collected_params = item._params | self._collected_params |
| 1669 | |
| 1670 | @util.memoized_instancemethod |
| 1671 | def _init_cte_state(self) -> MutableMapping[CTE, str]: |
no outgoing calls
no test coverage detected