abstract class org.h2.table.JoinBatch$ViewIndexLookupBatchBase<R extends org.h2.table.JoinBatch$QueryRunnerBase> implements org.h2.index.IndexLookupBatch
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.h2.table.JoinBatch$ViewIndexLookupBatchBase
  super_class: java.lang.Object
{
  protected final org.h2.index.ViewIndex viewIndex;
    descriptor: Lorg/h2/index/ViewIndex;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  private final java.util.ArrayList<java.util.concurrent.Future<org.h2.index.Cursor>> result;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Ljava/util/concurrent/Future<Lorg/h2/index/Cursor;>;>;

  private int resultSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean findCalled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(org.h2.index.ViewIndex);
    descriptor: (Lorg/h2/index/ViewIndex;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
        start local 1 // org.h2.index.ViewIndex viewIndex
         0: .line 780
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 776
            aload 0 /* this */
            invokestatic org.h2.util.Utils.newSmallArrayList:()Ljava/util/ArrayList;
            putfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.result:Ljava/util/ArrayList;
         2: .line 781
            aload 0 /* this */
            aload 1 /* viewIndex */
            putfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.viewIndex:Lorg/h2/index/ViewIndex;
         3: .line 782
            return
        end local 1 // org.h2.index.ViewIndex viewIndex
        end local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/h2/table/JoinBatch$ViewIndexLookupBatchBase<TR;>;
            0    4     1  viewIndex  Lorg/h2/index/ViewIndex;
    MethodParameters:
           Name  Flags
      viewIndex  

  public java.lang.String getPlanSQL();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
         0: .line 786
            ldc "view"
            areturn
        end local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/table/JoinBatch$ViewIndexLookupBatchBase<TR;>;

  protected abstract boolean collectSearchRows();
    descriptor: (Lorg/h2/table/JoinBatch$QueryRunnerBase;)Z
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (TR;)Z
    MethodParameters:
      Name  Flags
      r     

  protected abstract R newQueryRunner();
    descriptor: ()Lorg/h2/table/JoinBatch$QueryRunnerBase;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: ()TR;

  protected abstract void startQueryRunners(int);
    descriptor: (I)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
            Name  Flags
      resultSize  

  protected final boolean resetAfterFind();
    descriptor: ()Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
         0: .line 796
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.findCalled:Z
            ifne 2
         1: .line 797
            iconst_0
            ireturn
         2: .line 799
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.findCalled:Z
         3: .line 802
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         4: goto 7
         5: .line 803
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* i */
            invokevirtual org.h2.table.JoinBatch$ViewIndexLookupBatchBase.queryRunner:(I)Lorg/h2/table/JoinBatch$QueryRunnerBase;
            invokevirtual org.h2.table.JoinBatch$QueryRunnerBase.reset:()Z
            pop
         6: .line 802
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            if_icmplt 5
        end local 1 // int i
         8: .line 805
            aload 0 /* this */
            iconst_0
            putfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
         9: .line 806
            iconst_1
            ireturn
        end local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/h2/table/JoinBatch$ViewIndexLookupBatchBase<TR;>;
            4    8     1     i  I

  protected R queryRunner();
    descriptor: (I)Lorg/h2/table/JoinBatch$QueryRunnerBase;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
        start local 1 // int i
         0: .line 811
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.result:Ljava/util/ArrayList;
            iload 1 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.h2.table.JoinBatch$QueryRunnerBase
            areturn
        end local 1 // int i
        end local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/table/JoinBatch$ViewIndexLookupBatchBase<TR;>;
            0    1     1     i  I
    Signature: (I)TR;
    MethodParameters:
      Name  Flags
      i     

  public final boolean addSearchRows(org.h2.result.SearchRow, org.h2.result.SearchRow);
    descriptor: (Lorg/h2/result/SearchRow;Lorg/h2/result/SearchRow;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
        start local 1 // org.h2.result.SearchRow first
        start local 2 // org.h2.result.SearchRow last
         0: .line 816
            aload 0 /* this */
            invokevirtual org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resetAfterFind:()Z
            pop
         1: .line 817
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.viewIndex:Lorg/h2/index/ViewIndex;
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.viewIndex:Lorg/h2/index/ViewIndex;
            invokevirtual org.h2.index.ViewIndex.getSession:()Lorg/h2/engine/Session;
            aload 1 /* first */
            aload 2 /* last */
            aconst_null
            invokevirtual org.h2.index.ViewIndex.setupQueryParameters:(Lorg/h2/engine/Session;Lorg/h2/result/SearchRow;Lorg/h2/result/SearchRow;Lorg/h2/result/SearchRow;)V
         2: .line 819
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.result:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            if_icmpge 5
         3: .line 821
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            invokevirtual org.h2.table.JoinBatch$ViewIndexLookupBatchBase.queryRunner:(I)Lorg/h2/table/JoinBatch$QueryRunnerBase;
            astore 3 /* r */
        start local 3 // org.h2.table.JoinBatch$QueryRunnerBase r
         4: .line 822
            goto 7
        end local 3 // org.h2.table.JoinBatch$QueryRunnerBase r
         5: .line 824
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.result:Ljava/util/ArrayList;
            aload 0 /* this */
            invokevirtual org.h2.table.JoinBatch$ViewIndexLookupBatchBase.newQueryRunner:()Lorg/h2/table/JoinBatch$QueryRunnerBase;
            dup
            astore 3 /* r */
        start local 3 // org.h2.table.JoinBatch$QueryRunnerBase r
         6: invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         7: .line 826
      StackMap locals: org.h2.table.JoinBatch$QueryRunnerBase
      StackMap stack:
            aload 3 /* r */
            aload 1 /* first */
            putfield org.h2.table.JoinBatch$QueryRunnerBase.first:Lorg/h2/result/SearchRow;
         8: .line 827
            aload 3 /* r */
            aload 2 /* last */
            putfield org.h2.table.JoinBatch$QueryRunnerBase.last:Lorg/h2/result/SearchRow;
         9: .line 828
            aload 0 /* this */
            aload 3 /* r */
            invokevirtual org.h2.table.JoinBatch$ViewIndexLookupBatchBase.collectSearchRows:(Lorg/h2/table/JoinBatch$QueryRunnerBase;)Z
            ifne 12
        10: .line 829
            aload 3 /* r */
            invokevirtual org.h2.table.JoinBatch$QueryRunnerBase.clear:()V
        11: .line 830
            iconst_0
            ireturn
        12: .line 832
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            iconst_1
            iadd
            putfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
        13: .line 833
            iconst_1
            ireturn
        end local 3 // org.h2.table.JoinBatch$QueryRunnerBase r
        end local 2 // org.h2.result.SearchRow last
        end local 1 // org.h2.result.SearchRow first
        end local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/h2/table/JoinBatch$ViewIndexLookupBatchBase<TR;>;
            0   14     1  first  Lorg/h2/result/SearchRow;
            0   14     2   last  Lorg/h2/result/SearchRow;
            4    5     3      r  TR;
            6   14     3      r  TR;
    MethodParameters:
       Name  Flags
      first  
      last   

  public void reset(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
        start local 1 // boolean beforeQuery
         0: .line 838
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            ifeq 7
            aload 0 /* this */
            invokevirtual org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resetAfterFind:()Z
            ifne 7
         1: .line 840
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 841
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.h2.table.JoinBatch$ViewIndexLookupBatchBase.queryRunner:(I)Lorg/h2/table/JoinBatch$QueryRunnerBase;
            invokevirtual org.h2.table.JoinBatch$QueryRunnerBase.clear:()V
         4: .line 840
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            if_icmplt 3
        end local 2 // int i
         6: .line 843
            aload 0 /* this */
            iconst_0
            putfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
         7: .line 845
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean beforeQuery
        end local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lorg/h2/table/JoinBatch$ViewIndexLookupBatchBase<TR;>;
            0    8     1  beforeQuery  Z
            2    6     2            i  I
    MethodParameters:
             Name  Flags
      beforeQuery  

  public final java.util.List<java.util.concurrent.Future<org.h2.index.Cursor>> find();
    descriptor: ()Ljava/util/List;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
         0: .line 849
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            ifne 2
         1: .line 850
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            areturn
         2: .line 852
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.findCalled:Z
         3: .line 853
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            invokevirtual org.h2.table.JoinBatch$ViewIndexLookupBatchBase.startQueryRunners:(I)V
         4: .line 854
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.result:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            if_icmpne 5
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.result:Ljava/util/ArrayList;
            goto 6
      StackMap locals:
      StackMap stack:
         5: aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.result:Ljava/util/ArrayList;
            iconst_0
            aload 0 /* this */
            getfield org.h2.table.JoinBatch$ViewIndexLookupBatchBase.resultSize:I
            invokevirtual java.util.ArrayList.subList:(II)Ljava/util/List;
      StackMap locals:
      StackMap stack: java.util.List
         6: areturn
        end local 0 // org.h2.table.JoinBatch$ViewIndexLookupBatchBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/table/JoinBatch$ViewIndexLookupBatchBase<TR;>;
    Signature: ()Ljava/util/List<Ljava/util/concurrent/Future<Lorg/h2/index/Cursor;>;>;
}
Signature: <R:Lorg/h2/table/JoinBatch$QueryRunnerBase;>Ljava/lang/Object;Lorg/h2/index/IndexLookupBatch;
SourceFile: "JoinBatch.java"
NestHost: org.h2.table.JoinBatch
InnerClasses:
  private abstract QueryRunnerBase = org.h2.table.JoinBatch$QueryRunnerBase of org.h2.table.JoinBatch
  private abstract ViewIndexLookupBatchBase = org.h2.table.JoinBatch$ViewIndexLookupBatchBase of org.h2.table.JoinBatch