Execute a subquery within the current execution context
(
&self,
query: &crate::ast::Query,
context: &ExecutionContext,
)
| 1053 | |
| 1054 | /// Execute a subquery within the current execution context |
| 1055 | fn execute_subquery( |
| 1056 | &self, |
| 1057 | query: &crate::ast::Query, |
| 1058 | context: &ExecutionContext, |
| 1059 | ) -> Result<QueryResult, ExecutionError> { |
| 1060 | self.execute_subquery_with_context(query, context) |
| 1061 | } |
| 1062 | |
| 1063 | /// Check if a subquery returns any results (optimized for EXISTS) |
| 1064 | /// Returns true as soon as the first result is found, without materializing all results |
no test coverage detected