Migrating from Oracle - Implicit Casting Issue - Mailing list pgsql-general

From David G. Johnston
Subject Migrating from Oracle - Implicit Casting Issue
Date
Msg-id CAKFQuwZNbUe8Q735d4TXjHzjqeAqZ3vnixb+znmE6u95UodKwQ@mail.gmail.com
Whole thread Raw
In response to Migrating from Oracle - Implicit Casting Issue  (Karthik K L V <venkata.karthik4u@gmail.com>)
Responses Re: Migrating from Oracle - Implicit Casting Issue  (Karthik K L V <venkata.karthik4u@gmail.com>)
List pgsql-general
On Monday, July 18, 2022, Karthik K L V <venkata.karthik4u@gmail.com> wrote:
Hi Team,

We are migrating from Oracle 12c to Aurora Postgres 13 and running into implicit casting issues.

Oracle is able to implicitly cast the bind value of prepared statements executed from the application to appropriate type - String -> Number, String -> Date, Number -> String etc. when there is a mismatch b/w java data type and the column Datatype.

For example: If the Datatype of a Column is defined as Number and the application sends the bind value as a String (with single quotes in the query) - Oracle DB is able to implicitly cast to Number and execute the query and return the results.

The same is not true with Postgres and we are getting below exception

org.postgresql.util.PSQLException: ERROR: operator does not exist: bigint = character varying

Hint: No operator matches the given name and argument types. You might need to add explicit type casts..

We found a Postgres Driver property - stringtype=unspecified which appears to solve this problem and have the following questions.

Could you please let us know the following?

Q1) Will configuring this stringtype property introduce overhead on Postgres leading to Performance issues
Q2)Does setting this attribute have any other implications on the data in the DB.
Q3)Is there any plan to deprecate / stop supporting this attribute in future Aurora Postgres releases.


That setting is not recognized by the server in any way, it is a driver concern only.  IIUC it makes the Java Driver behave in a way consistent with the expectations of the server since by leaving the supplied type info undeclared the server can use its own logic.  If it works for you I say use it, it will be less problematic than methodically fixing your queries up front.  Though if there are some that show to be bottlenecks getting the type info correct may prove to make a difference in some situations.

David J.

pgsql-general by date:

Previous
From: Karthik K L V
Date:
Subject: Migrating from Oracle - Implicit Casting Issue
Next
From: Stefan Fercot
Date:
Subject: Re: Proposed Translations of Updated Code of Conduct Policy