提交 c1e5b3cb authored 作者: Thomas Mueller's avatar Thomas Mueller

Lob in databases: two small BLOB or CLOB values were always considered equal.

上级 ca6d9f07
......@@ -190,6 +190,9 @@ public class Utils {
* @return the result of the comparison (-1, 1 or 0)
*/
public static int compareNotNull(byte[] data1, byte[] data2) {
if (data1 == data2) {
return 0;
}
int len = Math.min(data1.length, data2.length);
for (int i = 0; i < len; i++) {
byte b = data1[i];
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论