panosfol commented on issue #737:
URL: https://github.com/apache/age/issues/737#issuecomment-1460754570

   Yeah it happens everytime i run the regression test manually. So basically I 
start with 
   ```pgsql
   LOAD 'age';
   SET search_path TO ag_catalog;
   
   
   
   SELECT create_graph('cypher_call');
   
   SELECT * FROM cypher('cypher_call', $$CREATE ({n: 'a'})$$) as (a agtype);
   SELECT * FROM cypher('cypher_call', $$CREATE ({n: 'b'})$$) as (a agtype);
   
   CREATE SCHEMA call_stmt_test;
   
   CREATE FUNCTION call_stmt_test.add_agtype(agtype, agtype) RETURNS agtype
       AS 'select $1 + $2;'
       LANGUAGE SQL
       IMMUTABLE
       RETURNS NULL ON NULL INPUT;
   ```
   
   which runs normally. After that when i reach the line 
   ```pgsql
   SELECT * FROM cypher('cypher_call', $$CALL sqrt(64)$$) as (sqrt agtype);
   ```
   I dont get the expected output , I get an error that reads : CALL not 
supported yet. I haven't done anything else to walk you through i think maybe 
it is the postgresql 12 that i have that makes it like that. Im planning on 
install postgresql11 and checking again to see if the error persists


-- 
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