Zoltan Toth
Zoltan Toth
@dstepanov Micronaut version is 3.2.7 which imports micronaut data 3.2.2 FYI I'm not using @ColumnTransformer I created a CAST in postgres. I'll check what happens if I add the transformer...
Added it to the field: ``` @MappedEntity("holder") public class HolderEntity extends Metadata { // [...] @ColumnTransformer( write = "?::holder_kind") @NotNull private Kind kind; // [...] } ``` The repo method...
@dstepanov I tried that too earlier, that doesn't help either, it is not applied on the parameter. ``` @ColumnTransformer(read = "@.kind::holder_kind", write = "?::holder_kind") @NotNull private Kind kind; Executing Query:...
Implicit cast is already in place, that doesn't help. I don't use @ColumnTransformer at all as for save,update,get.. implicit cast works fine, I only tried it because of your suggestion....
I can confirm that `keep-at-least` doesn't work with `filter-tags`. If I use filter tags + dry run, I can see that it wants to delete e.g.: only 2 SNAPSHOT prefixed...