R2DBC Core DatabaseClient.sql replacing column 'key' to '[*]key'

33 Views Asked by At

r2dbc.core.databaseclient.sql replace query that have column name 'key' to '[*]key' and this causes error in the query execution.

Mono<Map<String, Object>> first = db.sql("SELECT key FROM table_a");

The executed query will be "SELECT [*]key FROM table_a". This will cause error in the application as the query failed.

Anyone having this issue in their project? Any workaround?

0

There are 0 best solutions below