Sanne Grinovero

Results 140 comments of Sanne Grinovero

BTW, somehow related: we occasionally talk about the need to eventually be able to run the testsuite in parallel. Today we run paralle jobs for different database dialects, but it...

Hi Steve, yes good points. A unified schema would certainly be effective, but to get there it might still be useful to be able to logically group those tests belonging...

ah, only saw your second comment after posting - sorry that might be confusing. I agree with your ideas, that might be even better. Still, this shouldn't hurt to get...

Interesting, thanks for pinging me. The workaround seems to fly directly against our expectations, so it might have problematic side effects on other components: https://github.com/quarkusio/quarkus/blob/23f43c3d3be6f479f86f697888856a8c65d8136d/extensions/jdbc/jdbc-oracle/deployment/src/main/java/io/quarkus/jdbc/oracle/deployment/OracleMetadataOverrides.java#L72-L76 The error seems to suggest...

if there is no datasource that explains why you can't inject it :) or am I not understanding the question?

If that really was the mistake, use the reactive SQL client instead of the Datasource: ``` @Inject PgPool client; ```

I'm not too familiar with these mechanisms, but this code grabbed my attention recently as I was working on other GraalVM related changes and it got me thinking. To be...

For the record since GraalVM now deals (apparently correctly?) with `PhantomReference`s, I got the driver to work on Substrate without needing this patch.

Personally, it's no longer of value to me :) Wondering what @ahachete thinks of it?

hi @davecramer, thanks for your comments! Yes I'm aware of #1333 . Looks like we've been toying with similar goals, hoewever I'm coming with a different angle; I have some...