jrgemignani commented on issue #223: URL: https://github.com/apache/age/issues/223#issuecomment-1184630482
As I stated above, we will need to address that crash. Your command isn't syntactically incorrect, but the usage of some command like CREATE (blah) WHERE NOT EXISTS (MATCH (blah)) is not valid in either AGE or Neo4j - it will generate a syntax error - at least as far as I could tell. The difference here is that you wrapped the two parts (create & match) into two separate cypher queries and glued them together with SQL's WHERE NOT EXISTS. That is legal and the two command separately are also legal. However, for whatever reason - and we will need to address it - they don't play well together. Unfortunately, making that generate a syntax error isn't necessarily easy because they are separately valid commands AND we have no access to the PG parser. -- 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]
