jrgemignani commented on issue #2234:
URL: https://github.com/apache/age/issues/2234#issuecomment-3439924814

   @nikoraes Could you post your results from 1.5.0? Additionally, what version 
of PostgreSQL? Because, I just tried 1.5.0 and your original query doesn't work 
there either.
   
   ```
   psql-16.2-5432-pgsql=# \dx
                    List of installed extensions
     Name   | Version |   Schema   |         Description
   ---------+---------+------------+------------------------------
    age     | 1.5.0   | ag_catalog | AGE database extension
    plpgsql | 1.0     | pg_catalog | PL/pgSQL procedural language
   (2 rows)
   
   psql-16.2-5432-pgsql=# select * from create_graph('graphname');
   NOTICE:  graph "graphname" has been created
    create_graph
   --------------
   
   (1 row)
   
   psql-16.2-5432-pgsql=# SELECT * FROM cypher('graphname', $$
   WITH '{"bignumber":5e24}'::agtype as obj
   RETURN obj.bignumber
   $$) as (result agtype);
   2025-10-23 16:53:38.962 PDT [12652] ERROR:  typecast 'agtype' not supported 
at character 36
   2025-10-23 16:53:38.962 PDT [12652] STATEMENT:  SELECT * FROM 
cypher('graphname', $$
           WITH '{"bignumber":5e24}'::agtype as obj
           RETURN obj.bignumber
           $$) as (result agtype);
   ERROR:  typecast 'agtype' not supported
   LINE 1: SELECT * FROM cypher('graphname', $$
                                              ^
   psql-16.2-5432-pgsql=#
   ```


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