提交 83f9141d authored 作者: S.Vladykin's avatar S.Vladykin

minor fixes

上级 30396306
...@@ -17,7 +17,7 @@ import org.h2.result.SearchRow; ...@@ -17,7 +17,7 @@ import org.h2.result.SearchRow;
* Note that a single instance of {@link IndexLookupBatch} can be reused for multiple * Note that a single instance of {@link IndexLookupBatch} can be reused for multiple
* sequential batched lookups. * sequential batched lookups.
* *
* @see Index#createLookupBatch(TableFilter) * @see Index#createLookupBatch(org.h2.table.TableFilter)
* @author Sergi Vladykin * @author Sergi Vladykin
*/ */
public interface IndexLookupBatch { public interface IndexLookupBatch {
......
...@@ -323,11 +323,11 @@ public final class JoinBatch { ...@@ -323,11 +323,11 @@ public final class JoinBatch {
* Table filter participating in batched join. * Table filter participating in batched join.
*/ */
private static final class JoinFilter { private static final class JoinFilter {
final TableFilter filter; private final TableFilter filter;
final JoinFilter join; private final JoinFilter join;
int id; private int id;
IndexLookupBatch lookupBatch; private final IndexLookupBatch lookupBatch;
private JoinFilter(IndexLookupBatch lookupBatch, TableFilter filter, JoinFilter join) { private JoinFilter(IndexLookupBatch lookupBatch, TableFilter filter, JoinFilter join) {
this.filter = filter; this.filter = filter;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论