Method
_compile_context
(self, for_statement: bool = False)
Source from the content-addressed store, hash-verified
| 3419 | ) |
| 3420 | |
| 3421 | def _compile_context(self, for_statement: bool = False) -> QueryContext: |
| 3422 | compile_state = self._compile_state(for_statement=for_statement) |
| 3423 | context = QueryContext( |
| 3424 | compile_state, |
| 3425 | compile_state.statement, |
| 3426 | compile_state.statement, |
| 3427 | self._params, |
| 3428 | self.session, |
| 3429 | self.load_options, |
| 3430 | ) |
| 3431 | |
| 3432 | return context |
| 3433 | |
| 3434 | |
| 3435 | class AliasOption(interfaces.LoaderOption): |