提交 02911e9d authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Remove dead code in IndexCursor.getMax()

上级 79f5d819
...@@ -251,12 +251,6 @@ public class IndexCursor implements Cursor { ...@@ -251,12 +251,6 @@ public class IndexCursor implements Cursor {
if (comp == 0) { if (comp == 0) {
return a; return a;
} }
if (a == ValueNull.INSTANCE || b == ValueNull.INSTANCE) {
if (session.getDatabase().getSettings().optimizeIsNull) {
// column IS NULL AND column <op> <not null> is always false
return null;
}
}
return (comp > 0) == bigger ? a : b; return (comp > 0) == bigger ? a : b;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论