Re: [I] The Go driver becomes "undefined: parser", and the application cannot be built. [age]

2024-02-08 Thread via GitHub


maehara-n commented on issue #1455:
URL: https://github.com/apache/age/issues/1455#issuecomment-1935239072

   @jrgemignani I have looked at PR #1582 . It seems like it might solve this 
issue.


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] Need postgres with graph extensions running on windows OS [age]

2024-02-08 Thread via GitHub


MironAtHome commented on issue #1542:
URL: https://github.com/apache/age/issues/1542#issuecomment-1935211602

   Just finished port for PG14 version 1.5.0
   Will be running regression tests and update with quality check.
   A few warnings regarding cast from 64 bit long long value type to 32 bit 
long integer type is something will be checking.
   Please, look over switch to postgres memory / string handling functions from 
malloc and various to palloc0 family.


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] The Go driver becomes "undefined: parser", and the application cannot be built. [age]

2024-02-08 Thread via GitHub


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

   @maehara-n I have created PR #1582 to add in those files. Please check that 
PR out locally to see if it corrects your issue. 
   
   Please understand that it still needs to be reviewed and approved by others 
on the team. There is no guarantee that they will necessarily agree with 
providing files that can be built by the user. By verifying that this PR 
corrects the issue for you, it may help with consideration.


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] The Go driver becomes "undefined: parser", and the application cannot be built. [age]

2024-02-08 Thread via GitHub


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

   I will also add PR #1203 to the mix as needing review.


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] AGE-Viewer front-end not building (backend seems fine) [age-viewer]

2024-02-08 Thread via GitHub


koalabi commented on issue #168:
URL: https://github.com/apache/age-viewer/issues/168#issuecomment-1934901881

   OK. Fixed with some "aria-label" properties, refromatting and a few other 
things. Now builds without errors.
   
   Maybe time to prepare a PR ...


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] Support for apache tinkerpop gremlin [age]

2024-02-08 Thread via GitHub


paule96 commented on issue #431:
URL: https://github.com/apache/age/issues/431#issuecomment-1934881424

   @rafsun42 the support for neo4j is deprecated for gremlin. So I don't think 
so. 


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] Support for apache tinkerpop gremlin [age]

2024-02-08 Thread via GitHub


rafsun42 commented on issue #431:
URL: https://github.com/apache/age/issues/431#issuecomment-1934877441

   @paule96 I am not familiar with Gremlin. It seems Gremlin supports Neo4j. 
Will it be possible to reuse it for AGE, because both AGE and Neo4J uses Cypher 
as a query language.


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] AGE-Viewer front-end not building (backend seems fine) [age-viewer]

2024-02-08 Thread via GitHub


koalabi commented on issue #168:
URL: https://github.com/apache/age-viewer/issues/168#issuecomment-1934815140

   (I'm not familiar with JSX)
   
   Problem can be fixed by adding some text as button labels but the 
parser/checker seems to be really finicky: it even considers   as a void 
string (i.e. as the absence of labels). Putting "" is not sufficient either 
(the string appears on the button) but the front-end builds (but not 
necessarily runs). Adding a non-empty string works but leaves visible (and not 
desired) traces. 
   
   Any recommendation from a JSX expert?


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[I] AGE-Viewer front-end not building (backend seems fine) [age-viewer]

2024-02-08 Thread via GitHub


koalabi opened a new issue, #168:
URL: https://github.com/apache/age-viewer/issues/168

   **Describe the bug**
   When following the build instructions from README .md, the front-end build 
aborts on erros (after having issued many warnings when getting the 
dependencies). Backend seems to build fine.
   
   **To Reproduce**
   Steps to reproduce the behavior:
   1. Clone the age-viewer repo locally
   2. cd to the root of the source tree
   3. Issue command "npm run build-front "
   4. See error (build aborts on a series of errors related to jsx - see 
attachment and excerpt below:
   
   ```
   Failed to compile.
   
   src/components/contents/presentations/Editor.jsx
 Line 163:15:  A control must be associated with a text label  
jsx-a11y/control-has-associated-label
 ...
   ```
   
   **Expected behavior**
   Successful build was expected, possibly with some warnings
   
   **Screenshots**
   No screenshots needed but log file is attached.
   
   **Desktop (please complete the following information):**
- OS: Ubuntu 22.04
- Browser: (not relevant)
- Versions : npm : 7.24.0, node: v16.10.0
   
   **Additional context**
   Nothing to add
   
[age-viewer-fend-build-errors.txt](https://github.com/apache/age-viewer/files/14213416/age-viewer-fend-build-errors.txt)
   


-- 
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: dev-unsubscr...@age.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] Support for PIPE operator for apache-age-python client [age]

2024-02-08 Thread via GitHub


thjbdvlt commented on issue #865:
URL: https://github.com/apache/age/issues/865#issuecomment-1933914215

   @rafsun42 unfortunately: yes! but as i am really not a programmer, i have no 
doubts: it must be because of me not understing something. anyway, i post a 
comment directly on the [PR 1452 page](https://github.com/apache/age/pull/1452) 
with logs and description of what i have done, just in case it may help!
   


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[I] Implement Pattern Matching in the WHERE clause [age]

2024-02-08 Thread via GitHub


dehowef opened a new issue, #1577:
URL: https://github.com/apache/age/issues/1577

   Currently, the syntax for pattern matching in the WHERE clause is not 
implemented.
   
   For example, the syntax:
   MATCH (a) WHERE (a)-[]-() RETURN a
   
   and other similar syntaxes are valid queries and should return a result.
   


-- 
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: dev-unsubscr...@age.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org