Christian Beikov
Christian Beikov
I use this functionality in a similar way. It's just needed somehow in PHP because of the magic methods. /** - @property-read int $length - @method Test getInstance returns a...
agree to that. but the second confuses me a bit
Sure. Usually you just instantiate the `TypeDefinitionRegistry` or start from a schema SDL file. The support for a SDL file could be a good nice extension. ``` TypeDefinitionRegistry typeRegistry; if...
Thanks for looking into this, I don't have a rush. Sorry that I can't contribute that right now, but I'm about to finish a project and already quite busy with...
I would like to point out that in the Spring world, the DGS framework is currently the leading declarative solution for GraphQL which is very advanced. DGS offers support for...
Let me add some more context. This is for getting the Hibernate testsuite working with the latest H2 version. We have a test with a column transformer that was previously...
I can confirm that switching to `varbinary` works, but it's an unfortunate change as this requires committing to the `varbinary` DDL type. ```java @Column(name = "pswd", columnDefinition = "varbinary") @ColumnTransformer(...
By the way, this test works fine on PostgreSQL and MySQL, so I don't know what the bug in H2 2.0+ is, but I'd be very surprised if both PostgreSQL...
I looked at the code and it seems to me that you only moved code from static inner class `SecurityManagerClassRewriter` into `ByteBuddyState`. I'm having a hard time understanding how this...