[I] Allow collapsing a vertice [age-viewer]

2024-05-06 Thread via GitHub
ctron opened a new issue, #172: URL: https://github.com/apache/age-viewer/issues/172 There is a way to expand a vertice/node. But once that's done, there seems to be no way to close/collapse it again. -- This is an automated message from the Apache Git Service. To respond to the message,

[I] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
JourneyToSilius opened a new issue, #1836: URL: https://github.com/apache/age/issues/1836 `ERROR: value "3082705652732369514543573" is out of range for type bigint (SQLSTATE 22003)` I get this error when I try to insert a really large integer, it seems that age can't infer the type c

[I] SQL Error [22023]: ERROR: label_id must be 1 .. 65535 [age]

2024-05-06 Thread via GitHub
devcode100 opened a new issue, #1837: URL: https://github.com/apache/age/issues/1837 **Describe the bug** Upon trying to create new Nodes, getting the below error: SQL Error [22023]: ERROR: label_id must be 1 .. 65535 The issue is very specific to Nodes whose Labels are already exist

Re: [I] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
jrgemignani commented on issue #1836: URL: https://github.com/apache/age/issues/1836#issuecomment-2096381218 @JourneyToSilius Could you provide the query and output? -- 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] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
JourneyToSilius commented on issue #1836: URL: https://github.com/apache/age/issues/1836#issuecomment-2096406184 Query: `SELECT * FROM cypher('test_graph', $$CREATE (a:simplestruct {largeint: $largeint, name: $name})$$, $1::agtype) AS (n agtype);` AgeMap : `{"largeint":30827056527

Re: [I] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
jrgemignani commented on issue #1836: URL: https://github.com/apache/age/issues/1836#issuecomment-2096428468 @JourneyToSilius I will have to look at how that JSON is decoded. It might be that PG JSON doesn't support numeric. It might be that we added numeric and it needs a cast. -- This

Re: [I] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
JourneyToSilius commented on issue #1836: URL: https://github.com/apache/age/issues/1836#issuecomment-2096453386 I tried to type cast it to numeric but it doesn't work, or at least not the way I was doing it. Otherwise I'm not sure if JSONB actually supports numeric or it must be passed as

[I] File \src\backend\commands\label_commands.c lines 270-282 repeated needlessly, only one copy of if block should remain [age]

2024-05-06 Thread via GitHub
MironAtHome opened a new issue, #1839: URL: https://github.com/apache/age/issues/1839 **Describe the bug** Branch release/PG14/1.5.0 File \src\backend\commands\label_commands.c Lines ![image](https://github.com/apache/age/assets/18360184/d2dbe820-f89f-4cb2-8227-72c7dea3d815)

Re: [I] File \src\backend\commands\label_commands.c lines 270-282 repeated needlessly, only one copy of if block should remain [age]

2024-05-06 Thread via GitHub
markgomer commented on issue #1839: URL: https://github.com/apache/age/issues/1839#issuecomment-2096685197 @MironAtHome good find. Can you make a pull request fixing this? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and u

Re: [I] Incompatible Postgres version 16 with age-viewer's backend [age-viewer]

2024-05-06 Thread via GitHub
markgomer commented on issue #170: URL: https://github.com/apache/age-viewer/issues/170#issuecomment-2096697286 Pull request #171 should fix this. @eyab @aked21 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL a

Re: [I] Suggest integrating AGE as a 'Graph Store' in LlamaIndex for AI/RAG applications [age]

2024-05-06 Thread via GitHub
eyab commented on issue #1783: URL: https://github.com/apache/age/issues/1783#issuecomment-2096812047 @ztor2 Thank you for proposing to integrate Apache AGE with LlamaIndex. Your suggestion sounds like a valuable addition to our project, and I am excited to see how it develops.

[PR] Bump jinja2 from 3.1.3 to 3.1.4 [age-website]

2024-05-06 Thread via GitHub
dependabot[bot] opened a new pull request, #320: URL: https://github.com/apache/age-website/pull/320 Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.3 to 3.1.4. Release notes Sourced from https://github.com/pallets/jinja/releases";>jinja2's releases. 3.1.4 This i

Re: [I] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
jrgemignani commented on issue #1836: URL: https://github.com/apache/age/issues/1836#issuecomment-2096929348 @JourneyToSilius Try something like the following - ``` psql-16.1-5432-pgsql=# SELECT * FROM cypher('test', $$ CREATE (a:simplestruct {largeint: 1234567890123456789012345678

Re: [I] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
JourneyToSilius commented on issue #1836: URL: https://github.com/apache/age/issues/1836#issuecomment-2096968438 @jrgemignani thanks, that's what I tried before. If it works at the CLI it must be a string formatting problem then. I will try this out tomorrow and debug what's going on --

[DISCUSS] Apache AGE - fully Graph DBMS PR

2024-05-06 Thread Eya Badal
Dear Everyone, I hope you are doing great. We would like to have a conversation about a recent Pull Request [1] that we received for Apache AGE. This Pull Request seems to introduce new extension features for AGE within the DBMS core engine. Currently, it utilizes PostgreSQL13 and aims to tran

Re: [I] SQL Error [22023]: ERROR: label_id must be 1 .. 65535 [age]

2024-05-06 Thread via GitHub
jrgemignani commented on issue #1837: URL: https://github.com/apache/age/issues/1837#issuecomment-2097037061 > The volume of data is <100 (total number of Nodes across various Labels). Roughly, how many distinct labels? -- This is an automated message from the Apache Git Service. To

Re: [I] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
JourneyToSilius closed issue #1836: SQLSTATE 22003 when trying to insert a numeric value URL: https://github.com/apache/age/issues/1836 -- 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 c

Re: [I] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
JourneyToSilius commented on issue #1836: URL: https://github.com/apache/age/issues/1836#issuecomment-2097049632 @jrgemignani : ``` {"largeint":"3082705652732369514543573::numeric","name":"test_struct"} --- PASS: TestInferTypeInquery (0.04s) --- PASS: TestInferTypeInquery

Re: [I] SQLSTATE 22003 when trying to insert a numeric value [age]

2024-05-06 Thread via GitHub
jrgemignani commented on issue #1836: URL: https://github.com/apache/age/issues/1836#issuecomment-2097052243 @JourneyToSilius yw! -- 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 comm

Re: [I] Citus Compatibility [age]

2024-05-06 Thread via GitHub
rafsun42 commented on issue #54: URL: https://github.com/apache/age/issues/54#issuecomment-2097088502 Has anyone found a workaround to make age work with citus? I see that the following works **if** `_ag_label_vertex` does not have any child table: ``` SELECT create_distribu

Re: [I] SQL Error [22023]: ERROR: label_id must be 1 .. 65535 [age]

2024-05-06 Thread via GitHub
devcode100 commented on issue #1837: URL: https://github.com/apache/age/issues/1837#issuecomment-2097451354 > > The volume of data is <100 (total number of Nodes across various Labels). > > Roughly, how many distinct labels? **There is roughly **26** distinct labels.** The size

Releases on Docker Hub

2024-05-06 Thread Justin Mclean
HI, I was looking at [1], and you are pushing non-released versions there, which are linked to your download page. ASF release policy does not allow this [2], so it would be great if you could fix this. Kind Regards, Justin 1. https://hub.docker.com/r/apache/age/tags 2. https://www.apache.org/