pdpotter commented on issue #359: URL: https://github.com/apache/age/issues/359#issuecomment-1323589681
It is currently impossible to make it work in the WHERE clause. I think there might b a small issue in the code in your previous comment to make the index work in the MATCH clause: I think ``` CREATE UNIQUE INDEX test_comment_id_idx ON test.comment (properties); ``` should be ``` CREATE UNIQUE INDEX test_comment_id_idx ON test.comment USING gin (properties); ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
