You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PostgresResultIteratorWithMetaData has a bug on line 822 wherein Jackson's Object Mapper tries to deserialise a string but throws a JsonParsingException. The problem here is that we are passing the string without escaping the double quotes. This needs to be fixed.
PostgresResultIteratorWithMetaData
has a bug on line 822 wherein Jackson's Object Mapper tries to deserialise a string but throws aJsonParsingException
. The problem here is that we are passing the string without escaping the double quotes. This needs to be fixed.document-store/document-store/src/main/java/org/hypertrace/core/documentstore/postgres/PostgresCollection.java
Line 822 in 4df34ac
Note: We need to check the column type and escape only if it is a text column. For other numeric cols, it shouldn't be escaped.
The text was updated successfully, but these errors were encountered: