Gavin King

Results 184 issues of Gavin King

This is a pain to type: ``` ceylon run --run=examples.cayla.helloworld.run examples.cayla/1.0.0 ``` It should be: ``` ceylon run examples.cayla.helloworld/1.0.0 ``` which is what you would get if each example were...

`getNationalizationSupport()` currently returns `IMPLICIT` for the jTDS driver. But from the comment I _think_ it should probably return `UNSUPPORTED`. WDYT @sebersole @beikov ?

This PR introduces an `@DefaultSchema` annotation, allowing setting the schema at the package or outer class level. Thoughts?

Here's one option for getting rid of the raw types.

6.0

In the HR test suite I had to disable a test, as seen here: https://github.com/hibernate/hibernate-reactive/blob/2ff95a963d18c863853f6258490d4ace341eb00c/hibernate-reactive-core/src/test/java/org/hibernate/reactive/OrderedEmbeddableCollectionTest.java#L32 because of an intermittent error that only occurred on DB2 when running the whole test...

bug
module:db2

I had to disable [this test](https://github.com/hibernate/hibernate-reactive/blob/04d999bafcba2b3abdd14ddeed3be1a5c18d1e5f/hibernate-reactive-core/src/test/java/org/hibernate/reactive/BatchQueryOnConnectionTest.java) in Hibernate Reactive on DB2, due to the following error: ``` java.lang.IllegalStateException: Found unknown codepoint: 0x220a / 8714 at io.vertx.db2client.impl.drda.DRDAResponse.throwUnknownCodepoint(DRDAResponse.java:847) at io.vertx.db2client.impl.drda.DRDAConnectResponse.parseCommonError(DRDAConnectResponse.java:121) at io.vertx.db2client.impl.drda.DRDAQueryResponse.parseExecuteError(DRDAQueryResponse.java:1079)...

bug
module:db2

As reported [here](https://github.com/hibernate/hibernate-reactive/issues/306), a parameter of type `Buffer` cannot be used as a parameter of type BLOB or BINARY on the DB2 client. This *does* work on both Postgres and...

bug
module:db2

JDBC and JPA let me set a timeout on a query. Unless I'm missing something, it's a feature that's still needed in the reactive world, and AFAICT there's currently no...

enhancement

This is probably a big job, and it's not yet urgent, but it's about time we did at least a bit of exploratory work to get an estimate of just...

upgrade

We now have a `Statistics` interface but we don't record any information about statements and connections.

enhancement