Affects: 3.2.0 r2dbc.core.databaseclient.sql replace query that have column name 'key' to '[*]key' and this causes error in the query execution. ``` String select = "SELECT key FROM table_a"; 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?