Results 4 issues of Asher Tarnopolski

In ReactiveRXGenericQueryExecutor the following method is creating a new instance once a new transaction is created: ` protected io.reactivex.functions.Function newInstance(SqlConnection conn) { return transaction -> new ReactiveRXGenericQueryExecutor(configuration(),conn,transaction); }` While the...

The following call: > ReactiveRXGenericQueryExecutor executor =... > executor.query(dslCtx -> dslCtx.selectFrom(DSL.generateSeries(3, 10)))... will return error **io.vertx.pgclient.PgException: function generate_series(unknown, unknown) is not unique** This happens because while all of the queries...

### Version 4.3.1 ### Context While submitting queries using connections manually retrieved from a pool, PoolOptions'a setConnectionTimeout() seems to take an effect as expected. For example, using a pool with...

bug

hi, we have an empty object (object with no fields), e.g. `public class Hello { }` and `public class World { private Hello hello; }` we are expecting it to...