wen-bing opened a new issue, #2127:
URL: https://github.com/apache/age/issues/2127

   **Describe the bug**
   in cypher query , I cannot use $$ inside a string. my query like this:
   
   select * from cypher('graph1', $$
   Match(v:Persion{p_id:'safd$$bbb'}
   return v
   $$) as (v agtype);
   
   **How are you accessing AGE (Command line, driver, etc.)?**
   - psql
   
   **What data setup do we need to do?**
   ```pgsql
   ...
   SELECT * from cypher('graph1', $$
     CREATE (a:Persion {p_id: '123'}), 
            (b:Persion{p_id: '345'}), 
   $$) as (a agtype);
   ...
   ```
   
   **What is the command that caused the error?**
   ```pgsql
   SELECT * from cypher('graph1', $$
     MATCH  (b:Person{p_id: '345$$wwee'})
   $$) as (b agtype);
   ```
   ```
   ERROR: execution not completed.
   ```
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   
   **Environment (please complete the following information):**
   - Version: 1.5.0, PG 15
   
   


-- 
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: dev-unsubscr...@age.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to