File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
packages/eql-mapper/src/inference/infer_type_impls Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -80,16 +80,14 @@ impl<'ast> InferType<'ast, Statement> for TypeInferencer<'ast> {
8080 }
8181
8282 Statement :: Explain {
83- statement : inner_statement,
83+ // Note: inner statement's type inference happens through normal AST traversal
84+ statement : _inner_statement,
8485 ..
8586 } => {
8687 // Recursively type-check the inner statement so transformations apply
8788 // EXPLAIN itself returns metadata, not the query results - give it empty projection
8889 self . unify_node_with_type ( statement, Type :: empty_projection ( ) ) ?;
89- // Note: inner statement's type inference happens through normal AST traversal
90- let _inner_statement = inner_statement; // Handled by visitor
9190 }
92-
9391 _ => { }
9492 } ;
9593
You can’t perform that action at this time.
0 commit comments