Method
_compile_context
(self, for_statement: bool = False)
Source from the content-addressed store, hash-verified
| 3357 | ) |
| 3358 | |
| 3359 | def _compile_context(self, for_statement: bool = False) -> QueryContext: |
| 3360 | compile_state = self._compile_state(for_statement=for_statement) |
| 3361 | context = QueryContext( |
| 3362 | compile_state, |
| 3363 | compile_state.statement, |
| 3364 | compile_state.statement, |
| 3365 | self._params, |
| 3366 | self.session, |
| 3367 | self.load_options, |
| 3368 | ) |
| 3369 | |
| 3370 | return context |
| 3371 | |
| 3372 | |
| 3373 | class AliasOption(interfaces.LoaderOption): |