| 11 | //------------------------------------------------------------------------------ |
| 12 | |
| 13 | void AST_Enrich(AST *ast) { |
| 14 | /* Directives like CREATE INDEX are not queries. */ |
| 15 | if(cypher_astnode_type(ast->root) != CYPHER_AST_QUERY) return; |
| 16 | AST_AnnotateNamedPaths(ast); |
| 17 | } |
no test coverage detected