jrgemignani opened a new pull request, #2017:
URL: https://github.com/apache/age/pull/2017

   Fixed issue 1988: Reserved Keyword Handling: How to update a property which 
is a keyword. Basically, how to use a keyword, aka reserved word, in a query.
   
   Added the appropriate scanner and parser rules to allow keywords to be back 
ticked and used in queries as their name. For example, like in the following 
commands -
   
       MATCH (n:Person { id: 123 }) SET n.`match` = 'matched' RETURN n;
       MATCH (n:Person { id: 123 }) SET n.`create` = 'created' RETURN n;
   
   The changes did not break any regression tests.
   Added additional regression tests.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to