@@ -6,11 +6,11 @@ use partiql_ast::ast;
6
6
use partiql_ast:: ast:: {
7
7
Assignment , Bag , BagOpExpr , BagOperator , Between , BinOp , BinOpKind , Call , CallAgg , CallArg ,
8
8
CallArgNamed , CaseSensitivity , CreateIndex , CreateTable , Ddl , DdlOp , Delete , Dml , DmlOp ,
9
- DropIndex , DropTable , Exclusion , Expr , FromClause , FromLet , FromLetKind , GroupByExpr , GroupKey ,
10
- GroupingStrategy , Insert , InsertValue , Item , Join , JoinKind , JoinSpec , Like , List , Lit ,
11
- NullOrderingSpec , OnConflict , OrderByExpr , OrderingSpec , Path , PathStep , ProjectExpr ,
12
- Projection , ProjectionKind , Query , QuerySet , Remove , SearchedCase , Select , Set , SetQuantifier ,
13
- Sexp , SimpleCase , SortSpec , Struct , SymbolPrimitive , UniOp , UniOpKind , VarRef ,
9
+ DropIndex , DropTable , Exclusion , Expr , FromClause , FromLet , FromLetKind , GraphMatch ,
10
+ GroupByExpr , GroupKey , GroupingStrategy , Insert , InsertValue , Item , Join , JoinKind , JoinSpec ,
11
+ Like , List , Lit , NullOrderingSpec , OnConflict , OrderByExpr , OrderingSpec , Path , PathStep ,
12
+ ProjectExpr , Projection , ProjectionKind , Query , QuerySet , Remove , SearchedCase , Select , Set ,
13
+ SetQuantifier , Sexp , SimpleCase , SortSpec , Struct , SymbolPrimitive , UniOp , UniOpKind , VarRef ,
14
14
} ;
15
15
use partiql_ast:: visit:: { Traverse , Visit , Visitor } ;
16
16
use partiql_logical as logical;
@@ -1894,6 +1894,10 @@ impl<'ast> Visitor<'ast> for AstToLogical<'_> {
1894
1894
} ) ) ;
1895
1895
Traverse :: Continue
1896
1896
}
1897
+
1898
+ fn enter_graph_match ( & mut self , _graph_pattern : & ' ast GraphMatch ) -> Traverse {
1899
+ not_yet_implemented_fault ! ( self , "MATCH expression" ) ;
1900
+ }
1897
1901
}
1898
1902
1899
1903
fn lit_to_lit ( lit : & Lit ) -> Result < logical:: Lit , AstTransformError > {
0 commit comments