[jOOQ/jOOQ#18059] binary data of type byte[] is not array typed

This commit is contained in:
Lukas Eder 2025-02-26 14:42:07 +01:00
parent afa4233b40
commit e627069338

View File

@ -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