IndexAVL.java (hsqldb-2.6.0) | : | IndexAVL.java (hsqldb-2.6.1) | ||
---|---|---|---|---|
skipping to change at line 1468 | skipping to change at line 1468 | |||
return true; | return true; | |||
} | } | |||
} | } | |||
continue; | continue; | |||
} | } | |||
break; | break; | |||
} | } | |||
c = node; | ||||
while (true) { | while (true) { | |||
c = next(session, store, node, 0); | c = next(store, c); | |||
if (c == null) { | if (c == null) { | |||
break; | break; | |||
} | } | |||
nodeData = c.getData(store); | nodeData = c.getData(store); | |||
if (compareRow(session, data, nodeData) == 0) { | if (compareRow(session, data, nodeData) == 0) { | |||
row = c.getRow(store); | row = c.getRow(store); | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 3 lines changed or added |