[I] Python integration: raise AgeNotSet [age]

2023-10-27 Thread via GitHub
Sibiryakanton opened a new issue, #1327: URL: https://github.com/apache/age/issues/1327 **Describe the bug** A clear and concise description of what the bug is. **How are you accessing AGE (Command line, driver, etc.)?** - Python (psycopg2 + python package apache-age-python)

Re: [I] Apache AGE takes a long time to create graph node [age]

2023-10-27 Thread via GitHub
I33Buckler commented on issue #1287: URL: https://github.com/apache/age/issues/1287#issuecomment-1783638830 > @I33Buckler Your `create_stop_times` function is **O(N^3)** and that is inside a doubly nested loop that also does **SELECT**s from tables for each level. This can lead to as much

Re: [I] Server crashes when trying to execute SELECT * FROM agtype(null); [age]

2023-10-27 Thread via GitHub
jrgemignani commented on issue #1303: URL: https://github.com/apache/age/issues/1303#issuecomment-1783437538 @saygoodbyye The fix for this has been merged into the master branch. Please check that it fixes your issue. If it does, please consider closing this issue. -- This is an

Re: [I] If an alias is not specified, the count result is incorrect. [age]

2023-10-27 Thread via GitHub
jrgemignani commented on issue #945: URL: https://github.com/apache/age/issues/945#issuecomment-1783396513 @beamrock This has been corrected in the master branch. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the

Re: [I] Could not find rte error when using path variable in WHERE [age]

2023-10-27 Thread via GitHub
jrgemignani closed issue #1045: Could not find rte error when using path variable in WHERE URL: https://github.com/apache/age/issues/1045 -- 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

Re: [I] `SET` and `DETACH DELETE` do not work when `VERBOSE` is added to `EXPLAIN ANALYZE` [age]

2023-10-27 Thread via GitHub
CapnSpek closed issue #1278: `SET` and `DETACH DELETE` do not work when `VERBOSE` is added to `EXPLAIN ANALYZE` URL: https://github.com/apache/age/issues/1278 -- 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

Re: [I] Mandatory Match [age]

2023-10-27 Thread via GitHub
dehowef commented on issue #281: URL: https://github.com/apache/age/issues/281#issuecomment-1783251864 Nope, this was never implemented by cypher. We stopped pursuing this implementation too for now -- This is an automated message from the Apache Git Service. To respond to the message,

Re: [I] Mandatory Match [age]

2023-10-27 Thread via GitHub
jrgemignani commented on issue #281: URL: https://github.com/apache/age/issues/281#issuecomment-1783248394 @dehowef Can you give some insight here. -- 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

Re: [I] `SET` and `DETACH DELETE` do not work when `VERBOSE` is added to `EXPLAIN ANALYZE` [age]

2023-10-27 Thread via GitHub
jrgemignani commented on issue #1278: URL: https://github.com/apache/age/issues/1278#issuecomment-1783246850 @CapnSpek If this answered or resolved you issue, please consider closing it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on

[VOTE] Apache AGE 1.4.0 Release for PostgreSQL 11

2023-10-27 Thread John Gemignani
Dear Apache Community, Please carefully read all instructions as they may have changed since the last vote thread. This is an official vote for Apache AGE release 1.4.0 for PostgreSQL 11. To learn more about Apache AGE, please see http://age.apache.org/ Functionalities included and issues

Re: [DISCUSS] Apache AGE 1.4.0 Release for PostgreSQL 11

2023-10-27 Thread John Gemignani
Dear Apache Community, Since there are no objections, I am closing the [DISCUSS] thread and will open the official [VOTE] thread for Apache AGE 1.4.0 for PostgreSQL 11 shortly. Thank you all for your time and effort! John Gemignani On Thu, Oct 26, 2023 at 1:52 PM Eya Badal wrote: > +1 > >

Re: [I] Failure to Execute simple CREATE Query in Python Driver [age]

2023-10-27 Thread via GitHub
lapp0 closed issue #1318: Failure to Execute simple CREATE Query in Python Driver URL: https://github.com/apache/age/issues/1318 -- 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

Re: [I] Failure to Execute simple CREATE Query in Python Driver [age]

2023-10-27 Thread via GitHub
lapp0 commented on issue #1318: URL: https://github.com/apache/age/issues/1318#issuecomment-1782615381 Disregard. `cursor = ag.execCypher(query, params)` should be `cursor = ag.execCypher(query, params=params)` -- This is an automated message from the Apache Git Service. To

[I] Failure to Execute simple CREATE Query in Python Driver [age]

2023-10-27 Thread via GitHub
lapp0 opened a new issue, #1318: URL: https://github.com/apache/age/issues/1318 **Describe the bug** Code: ``` ag = age.connect(graph=GRAPH_NAME, dsn=get_dsn()) query = """ CREATE ( n:Entity {name: %s} ) RETURN n """