Hello. I guess you meant 1.4.197.
This function with such parameters was never supported by H2. But H2 silently ignores the value of the second parameter if the first parameter is a DATE, TIMESTAMP, or TIMESTAMP WITH TIME ZONE. The code for these data types is the same in both versions: https://github.com/h2database/h2database/blob/version-1.4.197/h2/src/main/org/h2/expression/Function.java#L1182 https://github.com/h2database/h2database/blob/version-1.4.200/h2/src/main/org/h2/expression/function/Function.java#L1805 I think you need to provide a simple compete test case. If you want to override a built-in function with own one, you need to add ;BUILTIN_ALIAS_OVERRIDE=TRUE to the connection URL. -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/h2-database/3f6bd72f-4771-4ad6-b00e-cda406287dd5%40googlegroups.com.
