You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, we are using postgres db and we have a column of type bytea. In java we have mapped it with encryptedAttrVal attribute of type byte[]. Now when I am writing method using IN operator in the repository like below it is not returning any result.
Flux findAllByEncryptedAttrValIn(List<byte[]> attributeValues);
But if I write without IN and pass only one value, it returns the result.
Flux findAllByEncryptedAttrVal(byte[] attributeValues);
However this IN operator is working fine when I am using it on varchar type column. Like below
Flux findAllByStatusIn(List statusList);
This is the first time I am asking any question here so let me know If I need to add any more details.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
findAllByEncryptedAttrValIn is not a H2 functionality.
If you would like us to spend some time helping you to diagnose the problem, please spend some time describing it and, ideally, providing a minimal sample using H2 R2DBC directly that reproduces the problem.
Hello, we are using postgres db and we have a column of type bytea. In java we have mapped it with encryptedAttrVal attribute of type byte[]. Now when I am writing method using IN operator in the repository like below it is not returning any result.
Flux findAllByEncryptedAttrValIn(List<byte[]> attributeValues);
But if I write without IN and pass only one value, it returns the result.
Flux findAllByEncryptedAttrVal(byte[] attributeValues);
However this IN operator is working fine when I am using it on varchar type column. Like below
Flux findAllByStatusIn(List statusList);
This is the first time I am asking any question here so let me know If I need to add any more details.
Thanks in advance!
The text was updated successfully, but these errors were encountered: