Skip to content

Commit 5072347

Browse files
committed
Fix the Path Grammar
lol
1 parent 6fbdd44 commit 5072347

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/backend/parser/cypher_gram.y

-12
Original file line numberDiff line numberDiff line change
@@ -1250,18 +1250,6 @@ path_relationship_body:
12501250
$$ = (Node *)n;
12511251
}
12521252
|
1253-
/* empty */
1254-
{
1255-
cypher_relationship *n;
1256-
1257-
n = make_ag_node(cypher_relationship);
1258-
n->name = NULL;
1259-
n->label = NULL;
1260-
n->varlen = NULL;
1261-
n->props = NULL;
1262-
1263-
$$ = (Node *)n;
1264-
}
12651253
;
12661254

12671255
label_opt:

0 commit comments

Comments
 (0)