Re: [I] Unexpected termination on looping cypher query - could not find rte [age]

2023-10-13 Thread via GitHub
I33Buckler commented on issue #1260: URL: https://github.com/apache/age/issues/1260#issuecomment-1762668744 > @I33Buckler There is a function `quote_literal` but that uses single quotes instead, not double. Thank you for the responses. Was not immediately obvious from the error mes

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

2023-10-13 Thread Dehowe Feng
+1 (binding) Checked: - Signature and hash - License and notice - Links and tags - No unexpected binary files On Fri, Oct 13, 2023 at 1:40 PM Rafsun Masud wrote: > +1 > > Checked: > - Signature and hash > - LICENSE and notice > - Links and Tags > - Unexpected binary files (none) > > Regards, >

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

2023-10-13 Thread Rafsun Masud
+1 Checked: - Signature and hash - LICENSE and notice - Links and Tags - Unexpected binary files (none) Regards, Rafsun Masud On Thu, Oct 12, 2023 at 9:05 AM John Gemignani wrote: > Dear Apache Community, > > Please carefully read all instructions as they may have changed since the > last vote

Re: [I] Unexpected termination on looping cypher query - could not find rte [age]

2023-10-13 Thread via GitHub
jrgemignani commented on issue #1260: URL: https://github.com/apache/age/issues/1260#issuecomment-1762069941 @I33Buckler There is a function `quote_literal` but that uses single quotes instead, not double. -- This is an automated message from the Apache Git Service. To respond to the mess

Re: [I] Unexpected termination on looping cypher query - could not find rte [age]

2023-10-13 Thread via GitHub
jrgemignani commented on issue #1260: URL: https://github.com/apache/age/issues/1260#issuecomment-1762061083 @I33Buckler updated comments above. -- 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 th

Re: [I] Unexpected termination on looping cypher query - could not find rte [age]

2023-10-13 Thread via GitHub
jrgemignani commented on issue #1260: URL: https://github.com/apache/age/issues/1260#issuecomment-1762030290 @I33Buckler There is a global variable that can change this behavior - ``` if (quote_all_identifiers) safe = false; ``` ``` /* Globals

Re: [I] Unexpected termination on looping cypher query - could not find rte [age]

2023-10-13 Thread via GitHub
jrgemignani commented on issue #1260: URL: https://github.com/apache/age/issues/1260#issuecomment-1762024478 @I33Buckler Here's why - ``` /* * quote_identifier - Quote an identifier only if needed * * When quotes are needed, we palloc the required spa

Re: [I] Unexpected termination on looping cypher query - could not find rte [age]

2023-10-13 Thread via GitHub
jrgemignani commented on issue #1260: URL: https://github.com/apache/age/issues/1260#issuecomment-1761904273 @I33Buckler I think the data might have some bad characters in it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub a

Re: [I] Unexpected termination on looping cypher query - could not find rte [age]

2023-10-13 Thread via GitHub
rafsun42 commented on issue #1260: URL: https://github.com/apache/age/issues/1260#issuecomment-1761821647 It seems `quote_ident` is not working as expected for some `trips2.service_key`. ``` (pg-15.4) agedev=# SELECT quote_ident(service_key) FROM trips1 LIMIT 1; quote_id

Re: [I] Mandatory Match [age]

2023-10-13 Thread via GitHub
Dzordzu commented on issue #281: URL: https://github.com/apache/age/issues/281#issuecomment-1761526987 Another ping :) -- 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 un

Re: [I] Unexpected termination on looping cypher query - could not find rte [age]

2023-10-13 Thread via GitHub
I33Buckler commented on issue #1260: URL: https://github.com/apache/age/issues/1260#issuecomment-1761061461 > @I33Buckler The `pg_dump` requires the table definitions (creates) in order to load them. Did you miss adding some definition files by chance? Or, I could be doing it incorrectly,..