Returns an `ExprContext` for the expressions in the parameters of an EXECUTE statement.
(qcx: &'a QueryContext<'a>)
| 1317 | |
| 1318 | /// Returns an `ExprContext` for the expressions in the parameters of an EXECUTE statement. |
| 1319 | pub(crate) fn execute_expr_context<'a>(qcx: &'a QueryContext<'a>) -> ExprContext<'a> { |
| 1320 | ExprContext { |
| 1321 | qcx, |
| 1322 | name: "EXECUTE", |
| 1323 | scope: &EXECUTE_CONTEXT_SCOPE, |
| 1324 | relation_type: &EXECUTE_CONTEXT_REL_TYPE, |
| 1325 | allow_aggregates: false, |
| 1326 | allow_subqueries: false, |
| 1327 | allow_parameters: false, |
| 1328 | allow_windows: false, |
| 1329 | } |
| 1330 | } |
| 1331 | |
| 1332 | /// The CastContext used when matching up the types of parameters passed to EXECUTE. |
| 1333 | /// |
no outgoing calls
no test coverage detected