[jOOQ/jOOQ#18059] binary data of type byte[] is not array typed
This commit is contained in:
parent
afa4233b40
commit
e627069338
@ -500,6 +500,12 @@ final class Convert {
|
||||
|
||||
if (ct1 == null && ct2 == null)
|
||||
return true;
|
||||
|
||||
// [#18059] binary data of type byte[] is not considered an array type
|
||||
else if (ct1 == null && ct2 == byte.class)
|
||||
return true;
|
||||
else if (ct2 == null && ct1 == byte.class)
|
||||
return true;
|
||||
else if (ct1 == null || ct2 == null)
|
||||
return false;
|
||||
else
|
||||
|
||||
Loading…
Reference in New Issue
Block a user