alibaba / GraphScope

🔨 🍇 💻 🚀 GraphScope: A One-Stop Large-Scale Graph Computing System from Alibaba | 一站式图计算系统
https://graphscope.io
Apache License 2.0
3.17k stars 424 forks source link

fix(interactive): Fix bugs in Gremlin `expr` Grammar #3958

Closed shirly121 closed 4 days ago

shirly121 commented 1 week ago

What do these changes do?

Fix the bugs in g.V().as('a').select('a').expr(_.id), which were caused by name conflicts between the lexer and parser rules. The identifier 'id' has now been added to the reserved word list, allowing its use as a symbolic name in the lexer rule.

Related issue number

Fixes