jrgemignani commented on code in PR #1516: URL: https://github.com/apache/age/pull/1516#discussion_r1466682147
########## sql/agtype_gin.sql: ########## @@ -70,6 +70,8 @@ DEFAULT FOR TYPE agtype USING gin AS OPERATOR 9 ?(agtype, agtype), OPERATOR 10 ?|(agtype, agtype), OPERATOR 11 ?&(agtype, agtype), + OPERATOR 12 @>>(agtype, agtype), + OPERATOR 13 <<@(agtype, agtype), Review Comment: The template file is basically the sql commands that are necessary to modify the previous (current) installed version to the next (new) version. So, if you are adding something, then just the sqls to add it. Basically, the sql for the age*.sql file. If you were modifying something existing, changing it, then the sql to modify the previous version to the new version. If you are removing something, then the sql to remove it. Hopefully, that helps. -- 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]
