commit | d34f8a41d6ebcc06b34564e8440d454571e305a9 | [log] [tgz] |
---|---|---|
author | Ibrar Ahmed <ibrar.ahmed@percona.com> | Sun Apr 30 22:23:40 2023 +0500 |
committer | GitHub <noreply@github.com> | Sun Apr 30 10:23:40 2023 -0700 |
tree | 9c924962f9f59793dbd8812c6e935b94eb32bb9b | |
parent | f0156ef3e883d7a2c9a15747355abceb8b7b5c78 [diff] |
Implement lexer and parser for cypher commands with MATCH prototype. (#880) This commit introduces the cypher .l and cypher.y file contains n a lexer and grammar for handling cypher commands, respectively. The new files also include a prototype function for the MATCH command, which will be further developed in subsequent commits. flex -b -Cfe -p -p -o ‘cypher.c’ cypher.l bison -d cypher.y make