Native Postgres - Error on Convert Layer

Description

The native postgresql still uses the convert layer for two keywords:
SYSDATE -> converted to getDate()
LIKE -> converted to SIMILAR TO when the user preference is set

This leads to errors because the replacement is conducted in the whole SQL string, even within quoted strings.

Test case example:

  • Login with System role

  • Window Reference

  • Push the Find button

  • Fill Name with %sysdate% (this is to search any reference with sysdate in the name)

  • Oracle and postgres return one record with name "C_Period - all, acct, sysdate, desc"

  • Native postgres doesn't return any record - because the sysdate is converted to getdate()

Environment

None

Activity

Show:

Carlos Ruiz November 21, 2020 at 12:44 AM

Pull request 400 fixes this using the same approach of the usual convert layer.

Also fixes that the current code was not logging correctly when the property org.idempiere.db.debug was set.

Fixed

Details

Assignee

Reporter

Components

Fix versions

Priority

Created September 19, 2020 at 9:39 AM
Updated January 18, 2022 at 9:54 PM
Resolved November 21, 2020 at 9:07 AM