Gavin King

Results 1281 comments of Gavin King

I mean if you're just talking about calling out to the database or HTTP then my understanding is that in principle Vert.x is supposed to process the response on the...

So I just tried the following: ```xml ``` ```java @Test public void test(TestContext context) { Map book = new HashMap(); book.put("ISBN", "9781932394153"); book.put("title", "Hibernate in Action"); book.put("author", "Christian Bauer and...

I've pushed this test here: https://github.com/hibernate/hibernate-reactive/commit/78dab9a83794b8037f0735e9e4de39f6b9b31256.

So, I guess I'm struggling to know what to do here. I've never been clear on whether we needed to add overloads of all the `Session` methods that accept string...

Sorry, I just realized my previous post is confusing, since I'm free-associating between JPA method naming and legacy Hibernate naming. To be clear, I'm talking about the `Session` method with...

Well the code you showed me should be really straightforward to make work in reactive. FTR I did not have to try very hard to get my test working, 10...

I mean, are you sure your stream is actually getting better executed? Have you put a break point in the callback?

I mean, try persisting a regular entity that way. From your description, it doesn't sound like the problem is anything to do with the dynamic entity.

Actually, rethinking this, it's really only `find()`, `persist()`, and `merge()` which would need to have an overloaded version accepting an entity name, so that's not so bad. I guess we...

> Is there any clarity when the LOB is going to be supported in Postgres? There is no `BLOB` or `CLOB` type in Postgres so you need to be much...