Re: [VOTE] Apache AGE 1.3.0 Release for PostgreSQL 12

2023-04-23 Thread Nicholas Sorrell
+1 (binding) Checked: - Signature and Hash - Tags and Links - LICENSE and NOTICE - No unexpected binary files Performed smoke test which includes: - Build Dockerfile (which builds project) - Run Docker image - Runs commands (create graph/node) via psql

Re: [VOTE] Apache AGE 1.3.0 Release for PostgreSQL 12

2023-04-23 Thread Mohamed Mokhtar
+1 - Signature and Hash => checked - Tags and links => checked - No unexpected binary files => checked - Validity of release notes => checked - Regression tests => checked ** There is a file named META.json that needs to be updated some fields are outdated like the version is set to 1.1 * *

[GitHub] [age] CapnSpek commented on issue #772: Research potential designs to implement IDs for vertices, edges, and labels. Designs that would generally work with existing code and that would permit

2023-04-23 Thread via GitHub
CapnSpek commented on issue #772: URL: https://github.com/apache/age/issues/772#issuecomment-1519159475 Hey team, So I came up with some ideas and since the shared document is still not available yet, I thought of putting them on dev to because of good readability, formatting and

[GitHub] [age] M4rcxs commented on issue #831: Python Driver : Whats the difference between execCypher() and cypher() in age.py

2023-04-23 Thread via GitHub
M4rcxs commented on issue #831: URL: https://github.com/apache/age/issues/831#issuecomment-1519147512 ### Cypher() This module takes a **single** argument, which is the Cypher query string to be executed, and returns the results as a list of records. Each record is a dictionary

[GitHub] [age] CapnSpek commented on issue #829: Reuse of variable with label constraint in concurrent MATCH clauses does not error out

2023-04-23 Thread via GitHub
CapnSpek commented on issue #829: URL: https://github.com/apache/age/issues/829#issuecomment-1519144826 > `MATCH (u),(u:Person) RETURN u` > > But this same query errors out in AGE saying `ERROR: multiple labels for variable 'u' are not supported` I'm not sure why, but this

[GitHub] [age] MuhammadTahaNaveed commented on issue #829: Reuse of variable with label constraint in concurrent MATCH clauses does not error out

2023-04-23 Thread via GitHub
MuhammadTahaNaveed commented on issue #829: URL: https://github.com/apache/age/issues/829#issuecomment-1519109605 > Ideally, the second MATCH should work as an intersection over the results of the first MATCH. So the result should be only one vertex " {"id": 844424930131969, "label":

[GitHub] [age] panosfol commented on issue #829: Reuse of variable with label constraint in concurrent MATCH clauses does not error out

2023-04-23 Thread via GitHub
panosfol commented on issue #829: URL: https://github.com/apache/age/issues/829#issuecomment-1519092397 So it does perform filtering according to the properties but not on the labels. I stand corrected then, I agree with you that this is actually a bug, an interesting one i might add. --

[GitHub] [age] CapnSpek commented on issue #829: Reuse of variable with label constraint in concurrent MATCH clauses does not error out

2023-04-23 Thread via GitHub
CapnSpek commented on issue #829: URL: https://github.com/apache/age/issues/829#issuecomment-1519091388 Ideally, the second MATCH should work as an intersection over the results of the first MATCH. So the result should be only one vertex " {"id": 844424930131969, "label": "Person",

[GitHub] [age] panosfol commented on issue #829: Reuse of variable with label constraint in concurrent MATCH clauses does not error out

2023-04-23 Thread via GitHub
panosfol commented on issue #829: URL: https://github.com/apache/age/issues/829#issuecomment-1519084515 When you create the vertex with "properties" : {"name": "bobby"} and "Person" as a label, it creates a new label table for vertices and inserts that vertex in that table. Also it assigns

[GitHub] [age-website] Mghrabi opened a new pull request, #151: [doc] correct all labels` names

2023-04-23 Thread via GitHub
Mghrabi opened a new pull request, #151: URL: https://github.com/apache/age-website/pull/151 * I corrected all labels` names to match code examples, this should make examples clear to readers -- This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] [age] ahmadtash7 commented on issue #354: AGE Onboarding - Learn Postgres Basics Group 2

2023-04-23 Thread via GitHub
ahmadtash7 commented on issue #354: URL: https://github.com/apache/age/issues/354#issuecomment-1519053204 ### Summary of Chapters 1 - 3 of The Internals of PostgreSQL _**Ch - 1: Database Cluster, Databases, and Table**_ Logical structures of database clusters are explained by

[GitHub] [age-website] rrrokhtar opened a new pull request, #150: Fixed the issues on User defined functions

2023-04-23 Thread via GitHub
rrrokhtar opened a new pull request, #150: URL: https://github.com/apache/age-website/pull/150 Fixed the following issues: 1. Missing ')' closing parentheses 2. Missing typecasting 3. Result is incorrect (sqrt(25) is 5 while the result is mentioned as 25)

[GitHub] [age-website] rrrokhtar opened a new issue, #149: Issues on the user defined functions query

2023-04-23 Thread via GitHub
rrrokhtar opened a new issue, #149: URL: https://github.com/apache/age-website/issues/149 The following example is not working properly which is at https://age.apache.org/age-manual/master/functions/user_functions.html It has multiple issues: 1. Missing ')' closing parentheses 2.

[GitHub] [age] moaz178 commented on issue #831: Python Driver : Whats the difference between execCypher() and cypher() in age.py

2023-04-23 Thread via GitHub
moaz178 commented on issue #831: URL: https://github.com/apache/age/issues/831#issuecomment-1518995598 The cypher() method sends a Cypher query to the Neo4j server and returns a cursor object that allows you to iterate over the results of the query. The cursor object is similar to a