public final class org.h2.table.JoinBatch
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.h2.table.JoinBatch
  super_class: java.lang.Object
{
  static final org.h2.index.Cursor EMPTY_CURSOR;
    descriptor: Lorg/h2/index/Cursor;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final java.util.concurrent.Future<org.h2.index.Cursor> EMPTY_FUTURE_CURSOR;
    descriptor: Ljava/util/concurrent/Future;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/concurrent/Future<Lorg/h2/index/Cursor;>;

  java.util.concurrent.Future<org.h2.index.Cursor> viewTopFutureCursor;
    descriptor: Ljava/util/concurrent/Future;
    flags: (0x0000) 
    Signature: Ljava/util/concurrent/Future<Lorg/h2/index/Cursor;>;

  org.h2.table.JoinBatch$JoinFilter top;
    descriptor: Lorg/h2/table/JoinBatch$JoinFilter;
    flags: (0x0000) 

  final org.h2.table.JoinBatch$JoinFilter[] filters;
    descriptor: [Lorg/h2/table/JoinBatch$JoinFilter;
    flags: (0x0010) ACC_FINAL

  boolean batchedSubQuery;
    descriptor: Z
    flags: (0x0000) 

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

  private org.h2.table.JoinBatch$JoinRow current;
    descriptor: Lorg/h2/table/JoinBatch$JoinRow;
    flags: (0x0002) ACC_PRIVATE

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

  private final org.h2.table.TableFilter additionalFilter;
    descriptor: Lorg/h2/table/TableFilter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 41
            ldc Lorg/h2/table/JoinBatch;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
         3: .line 46
            new org.h2.table.JoinBatch$1
            dup
            invokespecial org.h2.table.JoinBatch$1.<init>:()V
            putstatic org.h2.table.JoinBatch.EMPTY_CURSOR:Lorg/h2/index/Cursor;
         4: .line 76
            new org.h2.util.DoneFuture
            dup
            getstatic org.h2.table.JoinBatch.EMPTY_CURSOR:Lorg/h2/index/Cursor;
            invokespecial org.h2.util.DoneFuture.<init>:(Ljava/lang/Object;)V
            putstatic org.h2.table.JoinBatch.EMPTY_FUTURE_CURSOR:Ljava/util/concurrent/Future;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int, org.h2.table.TableFilter);
    descriptor: (ILorg/h2/table/TableFilter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.h2.table.JoinBatch this
        start local 1 // int filtersCount
        start local 2 // org.h2.table.TableFilter additionalFilter
         0: .line 112
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 113
            iload 1 /* filtersCount */
            bipush 32
            if_icmple 4
         2: .line 117
            ldc "Too many tables in join (at most 32 supported)."
         3: .line 116
            invokestatic org.h2.message.DbException.getUnsupportedException:(Ljava/lang/String;)Lorg/h2/message/DbException;
            athrow
         4: .line 119
      StackMap locals: org.h2.table.JoinBatch int org.h2.table.TableFilter
      StackMap stack:
            aload 0 /* this */
            iload 1 /* filtersCount */
            anewarray org.h2.table.JoinBatch$JoinFilter
            putfield org.h2.table.JoinBatch.filters:[Lorg/h2/table/JoinBatch$JoinFilter;
         5: .line 120
            aload 0 /* this */
            aload 2 /* additionalFilter */
            putfield org.h2.table.JoinBatch.additionalFilter:Lorg/h2/table/TableFilter;
         6: .line 121
            return
        end local 2 // org.h2.table.TableFilter additionalFilter
        end local 1 // int filtersCount
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    7     0              this  Lorg/h2/table/JoinBatch;
            0    7     1      filtersCount  I
            0    7     2  additionalFilter  Lorg/h2/table/TableFilter;
    MethodParameters:
                  Name  Flags
      filtersCount      
      additionalFilter  

  public org.h2.index.IndexLookupBatch getLookupBatch(int);
    descriptor: (I)Lorg/h2/index/IndexLookupBatch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.table.JoinBatch this
        start local 1 // int joinFilterId
         0: .line 130
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.filters:[Lorg/h2/table/JoinBatch$JoinFilter;
            iload 1 /* joinFilterId */
            aaload
            getfield org.h2.table.JoinBatch$JoinFilter.lookupBatch:Lorg/h2/index/IndexLookupBatch;
            areturn
        end local 1 // int joinFilterId
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/h2/table/JoinBatch;
            0    1     1  joinFilterId  I
    MethodParameters:
              Name  Flags
      joinFilterId  

  public void reset(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.h2.table.JoinBatch this
        start local 1 // boolean beforeQuery
         0: .line 140
            aload 0 /* this */
            aconst_null
            putfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
         1: .line 141
            aload 0 /* this */
            iconst_0
            putfield org.h2.table.JoinBatch.started:Z
         2: .line 142
            aload 0 /* this */
            iconst_0
            putfield org.h2.table.JoinBatch.found:Z
         3: .line 143
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.filters:[Lorg/h2/table/JoinBatch$JoinFilter;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 7
      StackMap locals: org.h2.table.JoinBatch int top int int org.h2.table.JoinBatch$JoinFilter[]
      StackMap stack:
         4: aload 5
            iload 3
            aaload
            astore 2 /* jf */
        start local 2 // org.h2.table.JoinBatch$JoinFilter jf
         5: .line 144
            aload 2 /* jf */
            iload 1 /* beforeQuery */
            invokevirtual org.h2.table.JoinBatch$JoinFilter.reset:(Z)V
        end local 2 // org.h2.table.JoinBatch$JoinFilter jf
         6: .line 143
            iinc 3 1
      StackMap locals:
      StackMap stack:
         7: iload 3
            iload 4
            if_icmplt 4
         8: .line 146
            iload 1 /* beforeQuery */
            ifeq 10
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.additionalFilter:Lorg/h2/table/TableFilter;
            ifnull 10
         9: .line 147
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.additionalFilter:Lorg/h2/table/TableFilter;
            invokevirtual org.h2.table.TableFilter.reset:()V
        10: .line 149
      StackMap locals: org.h2.table.JoinBatch int
      StackMap stack:
            return
        end local 1 // boolean beforeQuery
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Lorg/h2/table/JoinBatch;
            0   11     1  beforeQuery  Z
            5    6     2           jf  Lorg/h2/table/JoinBatch$JoinFilter;
    MethodParameters:
             Name  Flags
      beforeQuery  

  public void register(org.h2.table.TableFilter, org.h2.index.IndexLookupBatch);
    descriptor: (Lorg/h2/table/TableFilter;Lorg/h2/index/IndexLookupBatch;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.h2.table.JoinBatch this
        start local 1 // org.h2.table.TableFilter filter
        start local 2 // org.h2.index.IndexLookupBatch lookupBatch
         0: .line 158
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 1
            aload 1 /* filter */
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.h2.table.JoinBatch$JoinFilter
            dup
            aload 2 /* lookupBatch */
            aload 1 /* filter */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.top:Lorg/h2/table/JoinBatch$JoinFilter;
            invokespecial org.h2.table.JoinBatch$JoinFilter.<init>:(Lorg/h2/index/IndexLookupBatch;Lorg/h2/table/TableFilter;Lorg/h2/table/JoinBatch$JoinFilter;)V
            putfield org.h2.table.JoinBatch.top:Lorg/h2/table/JoinBatch$JoinFilter;
         2: .line 160
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.filters:[Lorg/h2/table/JoinBatch$JoinFilter;
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.top:Lorg/h2/table/JoinBatch$JoinFilter;
            getfield org.h2.table.JoinBatch$JoinFilter.id:I
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.top:Lorg/h2/table/JoinBatch$JoinFilter;
            aastore
         3: .line 161
            return
        end local 2 // org.h2.index.IndexLookupBatch lookupBatch
        end local 1 // org.h2.table.TableFilter filter
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/h2/table/JoinBatch;
            0    4     1       filter  Lorg/h2/table/TableFilter;
            0    4     2  lookupBatch  Lorg/h2/index/IndexLookupBatch;
    MethodParameters:
             Name  Flags
      filter       
      lookupBatch  

  public org.h2.value.Value getValue(int, org.h2.table.Column);
    descriptor: (ILorg/h2/table/Column;)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // org.h2.table.JoinBatch this
        start local 1 // int filterId
        start local 2 // org.h2.table.Column column
         0: .line 171
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            ifnonnull 2
         1: .line 172
            aconst_null
            areturn
         2: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* filterId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.row:(I)Ljava/lang/Object;
            astore 3 /* x */
        start local 3 // java.lang.Object x
         3: .line 175
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 4
            aload 3 /* x */
            ifnonnull 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 176
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* filterId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.isRow:(I)Z
            ifeq 5
            aload 3 /* x */
            checkcast org.h2.result.Row
            goto 6
      StackMap locals:
      StackMap stack:
         5: aload 3 /* x */
            checkcast org.h2.index.Cursor
            invokeinterface org.h2.index.Cursor.get:()Lorg/h2/result/Row;
      StackMap locals:
      StackMap stack: org.h2.result.Row
         6: astore 4 /* row */
        start local 4 // org.h2.result.Row row
         7: .line 177
            aload 2 /* column */
            invokevirtual org.h2.table.Column.getColumnId:()I
            istore 5 /* columnId */
        start local 5 // int columnId
         8: .line 178
            iload 5 /* columnId */
            iconst_m1
            if_icmpne 10
         9: .line 179
            aload 4 /* row */
            invokeinterface org.h2.result.Row.getKey:()J
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            areturn
        10: .line 181
      StackMap locals: org.h2.result.Row int
      StackMap stack:
            aload 4 /* row */
            aload 2 /* column */
            invokevirtual org.h2.table.Column.getColumnId:()I
            invokeinterface org.h2.result.Row.getValue:(I)Lorg/h2/value/Value;
            astore 6 /* value */
        start local 6 // org.h2.value.Value value
        11: .line 182
            aload 6 /* value */
            ifnonnull 13
        12: .line 183
            new java.lang.StringBuilder
            dup
            ldc "value is null: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* column */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 4 /* row */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.throwInternalError:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        13: .line 185
      StackMap locals: org.h2.value.Value
      StackMap stack:
            aload 6 /* value */
            areturn
        end local 6 // org.h2.value.Value value
        end local 5 // int columnId
        end local 4 // org.h2.result.Row row
        end local 3 // java.lang.Object x
        end local 2 // org.h2.table.Column column
        end local 1 // int filterId
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/h2/table/JoinBatch;
            0   14     1  filterId  I
            0   14     2    column  Lorg/h2/table/Column;
            3   14     3         x  Ljava/lang/Object;
            7   14     4       row  Lorg/h2/result/Row;
            8   14     5  columnId  I
           11   14     6     value  Lorg/h2/value/Value;
    MethodParameters:
          Name  Flags
      filterId  
      column    

  private void start();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=4, args_size=1
        start local 0 // org.h2.table.JoinBatch this
         0: .line 190
            aload 0 /* this */
            new org.h2.table.JoinBatch$JoinRow
            dup
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.filters:[Lorg/h2/table/JoinBatch$JoinFilter;
            arraylength
            anewarray java.lang.Object
            invokespecial org.h2.table.JoinBatch$JoinRow.<init>:([Ljava/lang/Object;)V
            putfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
         1: .line 193
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.batchedSubQuery:Z
            ifeq 5
         2: .line 194
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 3
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.viewTopFutureCursor:Ljava/util/concurrent/Future;
            ifnonnull 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.viewTopFutureCursor:Ljava/util/concurrent/Future;
            invokestatic org.h2.table.JoinBatch.get:(Ljava/util/concurrent/Future;)Lorg/h2/index/Cursor;
            astore 1 /* cursor */
        start local 1 // org.h2.index.Cursor cursor
         4: .line 196
            goto 9
        end local 1 // org.h2.index.Cursor cursor
         5: .line 198
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.top:Lorg/h2/table/JoinBatch$JoinFilter;
            getfield org.h2.table.JoinBatch$JoinFilter.filter:Lorg/h2/table/TableFilter;
            astore 2 /* f */
        start local 2 // org.h2.table.TableFilter f
         6: .line 199
            aload 2 /* f */
            invokevirtual org.h2.table.TableFilter.getIndexCursor:()Lorg/h2/index/IndexCursor;
            astore 3 /* indexCursor */
        start local 3 // org.h2.index.IndexCursor indexCursor
         7: .line 200
            aload 3 /* indexCursor */
            aload 2 /* f */
            invokevirtual org.h2.table.TableFilter.getSession:()Lorg/h2/engine/Session;
            aload 2 /* f */
            invokevirtual org.h2.table.TableFilter.getIndexConditions:()Ljava/util/ArrayList;
            invokevirtual org.h2.index.IndexCursor.find:(Lorg/h2/engine/Session;Ljava/util/ArrayList;)V
         8: .line 201
            aload 3 /* indexCursor */
            astore 1 /* cursor */
        end local 3 // org.h2.index.IndexCursor indexCursor
        end local 2 // org.h2.table.TableFilter f
        start local 1 // org.h2.index.Cursor cursor
         9: .line 203
      StackMap locals: org.h2.index.Cursor
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.top:Lorg/h2/table/JoinBatch$JoinFilter;
            getfield org.h2.table.JoinBatch$JoinFilter.id:I
            aload 1 /* cursor */
            lconst_0
            ldc 2
            invokevirtual org.h2.table.JoinBatch$JoinRow.updateRow:(ILjava/lang/Object;JJ)V
        10: .line 206
            new org.h2.table.JoinBatch$JoinRow
            dup
            aconst_null
            invokespecial org.h2.table.JoinBatch$JoinRow.<init>:([Ljava/lang/Object;)V
            astore 2 /* fake */
        start local 2 // org.h2.table.JoinBatch$JoinRow fake
        11: .line 207
            aload 2 /* fake */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            putfield org.h2.table.JoinBatch$JoinRow.next:Lorg/h2/table/JoinBatch$JoinRow;
        12: .line 208
            aload 0 /* this */
            aload 2 /* fake */
            putfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
        13: .line 209
            return
        end local 2 // org.h2.table.JoinBatch$JoinRow fake
        end local 1 // org.h2.index.Cursor cursor
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lorg/h2/table/JoinBatch;
            4    5     1       cursor  Lorg/h2/index/Cursor;
            9   14     1       cursor  Lorg/h2/index/Cursor;
            6    9     2            f  Lorg/h2/table/TableFilter;
            7    9     3  indexCursor  Lorg/h2/index/IndexCursor;
           11   14     2         fake  Lorg/h2/table/JoinBatch$JoinRow;

  public boolean next();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.table.JoinBatch this
         0: .line 217
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.started:Z
            ifne 3
         1: .line 218
            aload 0 /* this */
            invokevirtual org.h2.table.JoinBatch.start:()V
         2: .line 219
            aload 0 /* this */
            iconst_1
            putfield org.h2.table.JoinBatch.started:Z
         3: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.additionalFilter:Lorg/h2/table/TableFilter;
            ifnonnull 8
         4: .line 222
            aload 0 /* this */
            invokevirtual org.h2.table.JoinBatch.batchedNext:()Z
            ifeq 7
         5: .line 223
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 6
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual org.h2.table.JoinBatch$JoinRow.isComplete:()Z
            ifne 6
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         6: .line 224
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         7: .line 226
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         8: .line 229
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.found:Z
            ifne 14
         9: .line 230
            aload 0 /* this */
            invokevirtual org.h2.table.JoinBatch.batchedNext:()Z
            ifne 11
        10: .line 231
            iconst_0
            ireturn
        11: .line 233
      StackMap locals:
      StackMap stack:
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 12
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual org.h2.table.JoinBatch$JoinRow.isComplete:()Z
            ifne 12
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        12: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.h2.table.JoinBatch.found:Z
        13: .line 235
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.additionalFilter:Lorg/h2/table/TableFilter;
            invokevirtual org.h2.table.TableFilter.reset:()V
        14: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.additionalFilter:Lorg/h2/table/TableFilter;
            invokevirtual org.h2.table.TableFilter.next:()Z
            ifeq 16
        15: .line 240
            iconst_1
            ireturn
        16: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.h2.table.JoinBatch.found:Z
        17: .line 228
            goto 8
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lorg/h2/table/JoinBatch;

  private static org.h2.index.Cursor get(java.util.concurrent.Future<org.h2.index.Cursor>);
    descriptor: (Ljava/util/concurrent/Future;)Lorg/h2/index/Cursor;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // java.util.concurrent.Future f
         0: .line 249
            aload 0 /* f */
            invokeinterface java.util.concurrent.Future.get:()Ljava/lang/Object;
            checkcast org.h2.index.Cursor
            astore 1 /* c */
        start local 1 // org.h2.index.Cursor c
         1: .line 250
            goto 4
        end local 1 // org.h2.index.Cursor c
      StackMap locals:
      StackMap stack: java.lang.Exception
         2: astore 2 /* e */
        start local 2 // java.lang.Exception e
         3: .line 251
            aload 2 /* e */
            invokestatic org.h2.message.DbException.convert:(Ljava/lang/Throwable;)Lorg/h2/message/DbException;
            athrow
        end local 2 // java.lang.Exception e
        start local 1 // org.h2.index.Cursor c
         4: .line 253
      StackMap locals: org.h2.index.Cursor
      StackMap stack:
            aload 1 /* c */
            ifnonnull 5
            getstatic org.h2.table.JoinBatch.EMPTY_CURSOR:Lorg/h2/index/Cursor;
            goto 6
      StackMap locals:
      StackMap stack:
         5: aload 1 /* c */
      StackMap locals:
      StackMap stack: org.h2.index.Cursor
         6: areturn
        end local 1 // org.h2.index.Cursor c
        end local 0 // java.util.concurrent.Future f
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0     f  Ljava/util/concurrent/Future<Lorg/h2/index/Cursor;>;
            1    2     1     c  Lorg/h2/index/Cursor;
            4    7     1     c  Lorg/h2/index/Cursor;
            3    4     2     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception
    Signature: (Ljava/util/concurrent/Future<Lorg/h2/index/Cursor;>;)Lorg/h2/index/Cursor;
    MethodParameters:
      Name  Flags
      f     

  private boolean batchedNext();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.h2.table.JoinBatch this
         0: .line 257
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            ifnonnull 2
         1: .line 259
            iconst_0
            ireturn
         2: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            getfield org.h2.table.JoinBatch$JoinRow.next:Lorg/h2/table/JoinBatch$JoinRow;
            putfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
         3: .line 263
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            ifnonnull 5
         4: .line 264
            iconst_0
            ireturn
         5: .line 266
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            aconst_null
            putfield org.h2.table.JoinBatch$JoinRow.prev:Lorg/h2/table/JoinBatch$JoinRow;
         6: .line 268
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.filters:[Lorg/h2/table/JoinBatch$JoinFilter;
            arraylength
            iconst_1
            isub
            istore 1 /* lastJfId */
        start local 1 // int lastJfId
         7: .line 270
            iload 1 /* lastJfId */
            istore 2 /* jfId */
        start local 2 // int jfId
         8: .line 271
            goto 10
         9: .line 273
      StackMap locals: int int
      StackMap stack:
            iinc 2 /* jfId */ -1
        10: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 2 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.row:(I)Ljava/lang/Object;
            ifnull 9
        11: .line 277
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* jfId */
            invokevirtual org.h2.table.JoinBatch.fetchCurrent:(I)V
        12: .line 279
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual org.h2.table.JoinBatch$JoinRow.isDropped:()Z
            ifne 21
        13: .line 282
            iload 2 /* jfId */
            iload 1 /* lastJfId */
            if_icmpne 15
        14: .line 284
            iconst_1
            ireturn
        15: .line 286
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.filters:[Lorg/h2/table/JoinBatch$JoinFilter;
            iload 2 /* jfId */
            iconst_1
            iadd
            aaload
            astore 3 /* join */
        start local 3 // org.h2.table.JoinBatch$JoinFilter join
        16: .line 287
            aload 3 /* join */
            invokevirtual org.h2.table.JoinBatch$JoinFilter.isBatchFull:()Z
            ifeq 18
        17: .line 289
            aload 0 /* this */
            aload 3 /* join */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual org.h2.table.JoinBatch$JoinFilter.find:(Lorg/h2/table/JoinBatch$JoinRow;)Lorg/h2/table/JoinBatch$JoinRow;
            putfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
        18: .line 291
      StackMap locals: org.h2.table.JoinBatch$JoinFilter
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            aload 3 /* join */
            getfield org.h2.table.JoinBatch$JoinFilter.id:I
            invokevirtual org.h2.table.JoinBatch$JoinRow.row:(I)Ljava/lang/Object;
            ifnull 21
        19: .line 293
            aload 3 /* join */
            getfield org.h2.table.JoinBatch$JoinFilter.id:I
            istore 2 /* jfId */
        20: .line 294
            goto 11
        end local 3 // org.h2.table.JoinBatch$JoinFilter join
        21: .line 299
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            getfield org.h2.table.JoinBatch$JoinRow.next:Lorg/h2/table/JoinBatch$JoinRow;
            ifnonnull 34
        22: .line 301
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual org.h2.table.JoinBatch$JoinRow.isDropped:()Z
            ifeq 26
        23: .line 302
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            getfield org.h2.table.JoinBatch$JoinRow.prev:Lorg/h2/table/JoinBatch$JoinRow;
            putfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
        24: .line 303
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            ifnonnull 26
        25: .line 304
            iconst_0
            ireturn
        26: .line 307
      StackMap locals:
      StackMap stack:
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 27
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual org.h2.table.JoinBatch$JoinRow.isDropped:()Z
            ifeq 27
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        27: .line 308
      StackMap locals:
      StackMap stack:
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 28
            iload 2 /* jfId */
            iload 1 /* lastJfId */
            if_icmpne 28
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        28: .line 310
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* jfId */
        29: .line 311
            goto 31
        30: .line 312
      StackMap locals:
      StackMap stack:
            iinc 2 /* jfId */ 1
        31: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 2 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.row:(I)Ljava/lang/Object;
            ifnonnull 30
        32: .line 316
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.filters:[Lorg/h2/table/JoinBatch$JoinFilter;
            iload 2 /* jfId */
            aaload
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual org.h2.table.JoinBatch$JoinFilter.find:(Lorg/h2/table/JoinBatch$JoinRow;)Lorg/h2/table/JoinBatch$JoinRow;
            putfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
        33: .line 317
            goto 11
        34: .line 319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            getfield org.h2.table.JoinBatch$JoinRow.next:Lorg/h2/table/JoinBatch$JoinRow;
            putfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
        35: .line 320
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 39
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 2 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.isRow:(I)Z
            ifeq 39
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        36: .line 322
      StackMap locals:
      StackMap stack:
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 37
            iload 2 /* jfId */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.top:Lorg/h2/table/JoinBatch$JoinFilter;
            getfield org.h2.table.JoinBatch$JoinFilter.id:I
            if_icmpne 37
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        37: .line 324
      StackMap locals:
      StackMap stack:
            iinc 2 /* jfId */ -1
        38: .line 325
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 39
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 2 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.isRow:(I)Z
            ifeq 39
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        39: .line 321
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 2 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.row:(I)Ljava/lang/Object;
            ifnull 36
        40: .line 276
            goto 11
        end local 2 // int jfId
        end local 1 // int lastJfId
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   41     0      this  Lorg/h2/table/JoinBatch;
            7   41     1  lastJfId  I
            8   41     2      jfId  I
           16   21     3      join  Lorg/h2/table/JoinBatch$JoinFilter;

  private void fetchCurrent(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // org.h2.table.JoinBatch this
        start local 1 // int jfId
         0: .line 333
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            getfield org.h2.table.JoinBatch$JoinRow.prev:Lorg/h2/table/JoinBatch$JoinRow;
            ifnull 1
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            getfield org.h2.table.JoinBatch$JoinRow.prev:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.isRow:(I)Z
            ifne 1
            new java.lang.AssertionError
            dup
            ldc "prev must be already fetched"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 334
      StackMap locals:
      StackMap stack:
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 2
            iload 1 /* jfId */
            ifeq 2
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* jfId */
            iconst_1
            isub
            invokevirtual org.h2.table.JoinBatch$JoinRow.isRow:(I)Z
            ifne 2
            new java.lang.AssertionError
            dup
            ldc "left must be already fetched"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         2: .line 336
      StackMap locals:
      StackMap stack:
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 3
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.isRow:(I)Z
            ifeq 3
            new java.lang.AssertionError
            dup
            ldc "double fetching"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         3: .line 338
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.row:(I)Ljava/lang/Object;
            astore 2 /* x */
        start local 2 // java.lang.Object x
         4: .line 339
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 5
            aload 2 /* x */
            ifnonnull 5
            new java.lang.AssertionError
            dup
            ldc "x null"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         5: .line 342
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* x */
            getstatic org.h2.table.JoinBatch.EMPTY_CURSOR:Lorg/h2/index/Cursor;
            if_acmpne 6
            iconst_1
            goto 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 3 /* newCursor */
        start local 3 // boolean newCursor
         8: .line 344
            iload 3 /* newCursor */
            ifeq 12
         9: .line 345
            iload 1 /* jfId */
            ifne 16
        10: .line 348
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual org.h2.table.JoinBatch$JoinRow.drop:()V
        11: .line 349
            return
        12: .line 351
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.isFuture:(I)Z
            ifeq 16
        13: .line 353
            aload 2 /* x */
            checkcast java.util.concurrent.Future
            invokestatic org.h2.table.JoinBatch.get:(Ljava/util/concurrent/Future;)Lorg/h2/index/Cursor;
            astore 2 /* x */
        14: .line 354
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* jfId */
            aload 2 /* x */
            lconst_1
            ldc 2
            invokevirtual org.h2.table.JoinBatch$JoinRow.updateRow:(ILjava/lang/Object;JJ)V
        15: .line 355
            iconst_1
            istore 3 /* newCursor */
        16: .line 358
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.filters:[Lorg/h2/table/JoinBatch$JoinFilter;
            iload 1 /* jfId */
            aaload
            astore 4 /* jf */
        start local 4 // org.h2.table.JoinBatch$JoinFilter jf
        17: .line 359
            aload 2 /* x */
            checkcast org.h2.index.Cursor
            astore 5 /* c */
        start local 5 // org.h2.index.Cursor c
        18: .line 360
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 19
            aload 5 /* c */
            ifnonnull 19
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        19: .line 361
      StackMap locals: org.h2.table.JoinBatch$JoinFilter org.h2.index.Cursor
      StackMap stack:
            aload 4 /* jf */
            getfield org.h2.table.JoinBatch$JoinFilter.join:Lorg/h2/table/JoinBatch$JoinFilter;
            astore 6 /* join */
        start local 6 // org.h2.table.JoinBatch$JoinFilter join
        20: .line 364
      StackMap locals: org.h2.table.JoinBatch$JoinFilter
      StackMap stack:
            aload 5 /* c */
            ifnull 21
            aload 5 /* c */
            invokeinterface org.h2.index.Cursor.next:()Z
            ifne 28
        21: .line 365
      StackMap locals:
      StackMap stack:
            iload 3 /* newCursor */
            ifeq 26
            aload 4 /* jf */
            invokevirtual org.h2.table.JoinBatch$JoinFilter.isOuterJoin:()Z
            ifeq 26
        22: .line 367
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* jfId */
            aload 4 /* jf */
            invokevirtual org.h2.table.JoinBatch$JoinFilter.getNullRow:()Lorg/h2/result/Row;
            ldc 2
            ldc 3
            invokevirtual org.h2.table.JoinBatch$JoinRow.updateRow:(ILjava/lang/Object;JJ)V
        23: .line 368
            aconst_null
            astore 5 /* c */
        24: .line 369
            iconst_0
            istore 3 /* newCursor */
        25: .line 370
            goto 28
        26: .line 372
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual org.h2.table.JoinBatch$JoinRow.drop:()V
        27: .line 373
            return
        28: .line 376
      StackMap locals:
      StackMap stack:
            aload 4 /* jf */
            aload 5 /* c */
            ifnonnull 29
            iconst_1
            goto 30
      StackMap locals:
      StackMap stack: org.h2.table.JoinBatch$JoinFilter
        29: iconst_0
      StackMap locals: org.h2.table.JoinBatch int java.lang.Object int org.h2.table.JoinBatch$JoinFilter org.h2.index.Cursor org.h2.table.JoinBatch$JoinFilter
      StackMap stack: org.h2.table.JoinBatch$JoinFilter int
        30: invokevirtual org.h2.table.JoinBatch$JoinFilter.isOk:(Z)Z
            ifne 32
        31: .line 378
            goto 20
        32: .line 380
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 7 /* joinEmpty */
        start local 7 // boolean joinEmpty
        33: .line 381
            aload 6 /* join */
            ifnull 36
            aload 6 /* join */
            invokevirtual org.h2.table.JoinBatch$JoinFilter.collectSearchRows:()Z
            ifne 36
        34: .line 382
            aload 6 /* join */
            invokevirtual org.h2.table.JoinBatch$JoinFilter.isOuterJoin:()Z
            ifeq 20
        35: .line 383
            iconst_1
            istore 7 /* joinEmpty */
        36: .line 389
      StackMap locals: int
      StackMap stack:
            aload 5 /* c */
            ifnull 39
        37: .line 390
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* jfId */
            invokevirtual org.h2.table.JoinBatch$JoinRow.copyBehind:(I)Lorg/h2/table/JoinBatch$JoinRow;
            putfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
        38: .line 392
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            iload 1 /* jfId */
            aload 5 /* c */
            invokeinterface org.h2.index.Cursor.get:()Lorg/h2/result/Row;
            ldc 2
            ldc 3
            invokevirtual org.h2.table.JoinBatch$JoinRow.updateRow:(ILjava/lang/Object;JJ)V
        39: .line 394
      StackMap locals:
      StackMap stack:
            iload 7 /* joinEmpty */
            ifeq 41
        40: .line 396
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            aload 6 /* join */
            getfield org.h2.table.JoinBatch$JoinFilter.id:I
            getstatic org.h2.table.JoinBatch.EMPTY_CURSOR:Lorg/h2/index/Cursor;
            lconst_0
            ldc 2
            invokevirtual org.h2.table.JoinBatch$JoinRow.updateRow:(ILjava/lang/Object;JJ)V
        41: .line 398
      StackMap locals:
      StackMap stack:
            return
        end local 7 // boolean joinEmpty
        end local 6 // org.h2.table.JoinBatch$JoinFilter join
        end local 5 // org.h2.index.Cursor c
        end local 4 // org.h2.table.JoinBatch$JoinFilter jf
        end local 3 // boolean newCursor
        end local 2 // java.lang.Object x
        end local 1 // int jfId
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   42     0       this  Lorg/h2/table/JoinBatch;
            0   42     1       jfId  I
            4   42     2          x  Ljava/lang/Object;
            8   42     3  newCursor  Z
           17   42     4         jf  Lorg/h2/table/JoinBatch$JoinFilter;
           18   42     5          c  Lorg/h2/index/Cursor;
           20   42     6       join  Lorg/h2/table/JoinBatch$JoinFilter;
           33   42     7  joinEmpty  Z
    MethodParameters:
      Name  Flags
      jfId  final

  private org.h2.index.IndexLookupBatch viewIndexLookupBatch(org.h2.index.ViewIndex);
    descriptor: (Lorg/h2/index/ViewIndex;)Lorg/h2/index/IndexLookupBatch;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.table.JoinBatch this
        start local 1 // org.h2.index.ViewIndex viewIndex
         0: .line 406
            new org.h2.table.JoinBatch$ViewIndexLookupBatch
            dup
            aload 0 /* this */
            aload 1 /* viewIndex */
            invokespecial org.h2.table.JoinBatch$ViewIndexLookupBatch.<init>:(Lorg/h2/table/JoinBatch;Lorg/h2/index/ViewIndex;)V
            areturn
        end local 1 // org.h2.index.ViewIndex viewIndex
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/h2/table/JoinBatch;
            0    1     1  viewIndex  Lorg/h2/index/ViewIndex;
    MethodParameters:
           Name  Flags
      viewIndex  

  public static org.h2.index.IndexLookupBatch createViewIndexLookupBatch(org.h2.index.ViewIndex);
    descriptor: (Lorg/h2/index/ViewIndex;)Lorg/h2/index/IndexLookupBatch;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.h2.index.ViewIndex viewIndex
         0: .line 417
            aload 0 /* viewIndex */
            invokevirtual org.h2.index.ViewIndex.getQuery:()Lorg/h2/command/dml/Query;
            astore 1 /* query */
        start local 1 // org.h2.command.dml.Query query
         1: .line 418
            aload 1 /* query */
            invokevirtual org.h2.command.dml.Query.isUnion:()Z
            ifeq 6
         2: .line 419
            new org.h2.table.JoinBatch$ViewIndexLookupBatchUnion
            dup
            aload 0 /* viewIndex */
            invokespecial org.h2.table.JoinBatch$ViewIndexLookupBatchUnion.<init>:(Lorg/h2/index/ViewIndex;)V
            astore 2 /* unionBatch */
        start local 2 // org.h2.table.JoinBatch$ViewIndexLookupBatchUnion unionBatch
         3: .line 420
            aload 2 /* unionBatch */
            invokevirtual org.h2.table.JoinBatch$ViewIndexLookupBatchUnion.initialize:()Z
            ifeq 4
            aload 2 /* unionBatch */
            goto 5
      StackMap locals: org.h2.command.dml.Query org.h2.table.JoinBatch$ViewIndexLookupBatchUnion
      StackMap stack:
         4: aconst_null
      StackMap locals:
      StackMap stack: org.h2.table.JoinBatch$ViewIndexLookupBatchUnion
         5: areturn
        end local 2 // org.h2.table.JoinBatch$ViewIndexLookupBatchUnion unionBatch
         6: .line 422
      StackMap locals:
      StackMap stack:
            aload 1 /* query */
            checkcast org.h2.command.dml.Select
            invokevirtual org.h2.command.dml.Select.getJoinBatch:()Lorg/h2/table/JoinBatch;
            astore 2 /* jb */
        start local 2 // org.h2.table.JoinBatch jb
         7: .line 423
            aload 2 /* jb */
            ifnull 8
            aload 2 /* jb */
            iconst_0
            invokevirtual org.h2.table.JoinBatch.getLookupBatch:(I)Lorg/h2/index/IndexLookupBatch;
            ifnonnull 9
         8: .line 425
      StackMap locals: org.h2.table.JoinBatch
      StackMap stack:
            aconst_null
            areturn
         9: .line 427
      StackMap locals:
      StackMap stack:
            getstatic org.h2.table.JoinBatch.$assertionsDisabled:Z
            ifne 10
            aload 2 /* jb */
            getfield org.h2.table.JoinBatch.batchedSubQuery:Z
            ifeq 10
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        10: .line 428
      StackMap locals:
      StackMap stack:
            aload 2 /* jb */
            iconst_1
            putfield org.h2.table.JoinBatch.batchedSubQuery:Z
        11: .line 429
            aload 2 /* jb */
            aload 0 /* viewIndex */
            invokevirtual org.h2.table.JoinBatch.viewIndexLookupBatch:(Lorg/h2/index/ViewIndex;)Lorg/h2/index/IndexLookupBatch;
            areturn
        end local 2 // org.h2.table.JoinBatch jb
        end local 1 // org.h2.command.dml.Query query
        end local 0 // org.h2.index.ViewIndex viewIndex
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0   viewIndex  Lorg/h2/index/ViewIndex;
            1   12     1       query  Lorg/h2/command/dml/Query;
            3    6     2  unionBatch  Lorg/h2/table/JoinBatch$ViewIndexLookupBatchUnion;
            7   12     2          jb  Lorg/h2/table/JoinBatch;
    MethodParameters:
           Name  Flags
      viewIndex  

  public static org.h2.index.IndexLookupBatch createFakeIndexLookupBatch(org.h2.table.TableFilter);
    descriptor: (Lorg/h2/table/TableFilter;)Lorg/h2/index/IndexLookupBatch;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.table.TableFilter filter
         0: .line 439
            new org.h2.table.JoinBatch$FakeLookupBatch
            dup
            aload 0 /* filter */
            invokespecial org.h2.table.JoinBatch$FakeLookupBatch.<init>:(Lorg/h2/table/TableFilter;)V
            areturn
        end local 0 // org.h2.table.TableFilter filter
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  filter  Lorg/h2/table/TableFilter;
    MethodParameters:
        Name  Flags
      filter  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.table.JoinBatch this
         0: .line 444
            new java.lang.StringBuilder
            dup
            ldc "JoinBatch->\nprev->"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
         1: aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            getfield org.h2.table.JoinBatch$JoinRow.prev:Lorg/h2/table/JoinBatch$JoinRow;
      StackMap locals: org.h2.table.JoinBatch
      StackMap stack: java.lang.StringBuilder org.h2.table.JoinBatch$JoinRow
         2: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 445
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "curr->"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         4: .line 446
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "next->"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            ifnonnull 5
            aconst_null
            goto 6
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
         5: aload 0 /* this */
            getfield org.h2.table.JoinBatch.current:Lorg/h2/table/JoinBatch$JoinRow;
            getfield org.h2.table.JoinBatch$JoinRow.next:Lorg/h2/table/JoinBatch$JoinRow;
      StackMap locals: org.h2.table.JoinBatch
      StackMap stack: java.lang.StringBuilder org.h2.table.JoinBatch$JoinRow
         6: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         7: .line 444
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.h2.table.JoinBatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/h2/table/JoinBatch;
}
SourceFile: "JoinBatch.java"
NestMembers:
  org.h2.table.JoinBatch$1  org.h2.table.JoinBatch$FakeLookupBatch  org.h2.table.JoinBatch$JoinFilter  org.h2.table.JoinBatch$JoinRow  org.h2.table.JoinBatch$QueryRunner  org.h2.table.JoinBatch$QueryRunnerBase  org.h2.table.JoinBatch$QueryRunnerUnion  org.h2.table.JoinBatch$SingletonList  org.h2.table.JoinBatch$ViewIndexLookupBatch  org.h2.table.JoinBatch$ViewIndexLookupBatchBase  org.h2.table.JoinBatch$ViewIndexLookupBatchUnion
InnerClasses:
  org.h2.table.JoinBatch$1
  private final FakeLookupBatch = org.h2.table.JoinBatch$FakeLookupBatch of org.h2.table.JoinBatch
  private final JoinFilter = org.h2.table.JoinBatch$JoinFilter of org.h2.table.JoinBatch
  private final JoinRow = org.h2.table.JoinBatch$JoinRow of org.h2.table.JoinBatch
  private final QueryRunner = org.h2.table.JoinBatch$QueryRunner of org.h2.table.JoinBatch
  private abstract QueryRunnerBase = org.h2.table.JoinBatch$QueryRunnerBase of org.h2.table.JoinBatch
  private QueryRunnerUnion = org.h2.table.JoinBatch$QueryRunnerUnion of org.h2.table.JoinBatch
  final SingletonList = org.h2.table.JoinBatch$SingletonList of org.h2.table.JoinBatch
  private final ViewIndexLookupBatch = org.h2.table.JoinBatch$ViewIndexLookupBatch of org.h2.table.JoinBatch
  private abstract ViewIndexLookupBatchBase = org.h2.table.JoinBatch$ViewIndexLookupBatchBase of org.h2.table.JoinBatch
  private final ViewIndexLookupBatchUnion = org.h2.table.JoinBatch$ViewIndexLookupBatchUnion of org.h2.table.JoinBatch