vttranlina commented on code in PR #1858:
URL: https://github.com/apache/james-project/pull/1858#discussion_r1430868086
##########
mailbox/postgres/src/main/java/org/apache/james/mailbox/postgres/mail/PostgresMessageModule.java:
##########
@@ -108,6 +108,24 @@ interface MessageToMailboxTable {
Field<String[]> USER_FLAGS = DSL.field("user_flags",
DataTypes.STRING_ARRAY);
Field<LocalDateTime> SAVE_DATE = DSL.field("save_date",
DataTypes.TIMESTAMP);
+ String ARRAY_REMOVE_JAMES_FUNCTION_NAME = "array_remove_james";
+ String CREATE_ARRAY_REMOVE_JAMES_FUNCTION =
+ "CREATE OR REPLACE FUNCTION " + ARRAY_REMOVE_JAMES_FUNCTION_NAME +
"(\n" +
+ " p_remove_flags_1 text[],\n" +
+ " p_remove_flags_2 text[])\n" +
Review Comment:
Can you give me a new name?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]