public abstract class org.h2.result.LazyResult implements org.h2.result.ResultInterface
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.h2.result.LazyResult
  super_class: java.lang.Object
{
  private final org.h2.expression.Expression[] expressions;
    descriptor: [Lorg/h2/expression/Expression;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private org.h2.value.Value[] currentRow;
    descriptor: [Lorg/h2/value/Value;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.value.Value[] nextRow;
    descriptor: [Lorg/h2/value/Value;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  public void <init>(org.h2.expression.Expression[]);
    descriptor: ([Lorg/h2/expression/Expression;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // org.h2.expression.Expression[] expressions
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 22
            aload 0 /* this */
            iconst_m1
            putfield org.h2.result.LazyResult.rowId:I
         2: .line 30
            aload 0 /* this */
            aload 1 /* expressions */
            putfield org.h2.result.LazyResult.expressions:[Lorg/h2/expression/Expression;
         3: .line 31
            return
        end local 1 // org.h2.expression.Expression[] expressions
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/h2/result/LazyResult;
            0    4     1  expressions  [Lorg/h2/expression/Expression;
    MethodParameters:
             Name  Flags
      expressions  

  public void setLimit(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // int limit
         0: .line 34
            aload 0 /* this */
            iload 1 /* limit */
            putfield org.h2.result.LazyResult.limit:I
         1: .line 35
            return
        end local 1 // int limit
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/h2/result/LazyResult;
            0    2     1  limit  I
    MethodParameters:
       Name  Flags
      limit  

  public boolean isLazy();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 39
            iconst_1
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 44
            aload 0 /* this */
            getfield org.h2.result.LazyResult.closed:Z
            ifeq 2
         1: .line 45
            invokestatic org.h2.message.DbException.throwInternalError:()Ljava/lang/RuntimeException;
            athrow
         2: .line 47
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            putfield org.h2.result.LazyResult.rowId:I
         3: .line 48
            aload 0 /* this */
            iconst_0
            putfield org.h2.result.LazyResult.afterLast:Z
         4: .line 49
            aload 0 /* this */
            aconst_null
            putfield org.h2.result.LazyResult.currentRow:[Lorg/h2/value/Value;
         5: .line 50
            aload 0 /* this */
            aconst_null
            putfield org.h2.result.LazyResult.nextRow:[Lorg/h2/value/Value;
         6: .line 51
            return
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/result/LazyResult;

  public org.h2.value.Value[] currentRow();
    descriptor: ()[Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 55
            aload 0 /* this */
            getfield org.h2.result.LazyResult.currentRow:[Lorg/h2/value/Value;
            areturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;

  public boolean next();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 60
            aload 0 /* this */
            invokevirtual org.h2.result.LazyResult.hasNext:()Z
            ifeq 5
         1: .line 61
            aload 0 /* this */
            dup
            getfield org.h2.result.LazyResult.rowId:I
            iconst_1
            iadd
            putfield org.h2.result.LazyResult.rowId:I
         2: .line 62
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.result.LazyResult.nextRow:[Lorg/h2/value/Value;
            putfield org.h2.result.LazyResult.currentRow:[Lorg/h2/value/Value;
         3: .line 63
            aload 0 /* this */
            aconst_null
            putfield org.h2.result.LazyResult.nextRow:[Lorg/h2/value/Value;
         4: .line 64
            iconst_1
            ireturn
         5: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.result.LazyResult.afterLast:Z
            ifne 9
         6: .line 67
            aload 0 /* this */
            dup
            getfield org.h2.result.LazyResult.rowId:I
            iconst_1
            iadd
            putfield org.h2.result.LazyResult.rowId:I
         7: .line 68
            aload 0 /* this */
            aconst_null
            putfield org.h2.result.LazyResult.currentRow:[Lorg/h2/value/Value;
         8: .line 69
            aload 0 /* this */
            iconst_1
            putfield org.h2.result.LazyResult.afterLast:Z
         9: .line 71
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/h2/result/LazyResult;

  public boolean skip();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 80
            aload 0 /* this */
            getfield org.h2.result.LazyResult.closed:Z
            ifne 1
            aload 0 /* this */
            getfield org.h2.result.LazyResult.afterLast:Z
            ifeq 2
         1: .line 81
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 83
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.h2.result.LazyResult.currentRow:[Lorg/h2/value/Value;
         3: .line 84
            aload 0 /* this */
            getfield org.h2.result.LazyResult.nextRow:[Lorg/h2/value/Value;
            ifnull 6
         4: .line 85
            aload 0 /* this */
            aconst_null
            putfield org.h2.result.LazyResult.nextRow:[Lorg/h2/value/Value;
         5: .line 86
            iconst_1
            ireturn
         6: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.result.LazyResult.skipNextRow:()Z
            ifeq 8
         7: .line 89
            iconst_1
            ireturn
         8: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.h2.result.LazyResult.afterLast:Z
         9: .line 92
            iconst_0
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/h2/result/LazyResult;

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 97
            aload 0 /* this */
            getfield org.h2.result.LazyResult.closed:Z
            ifne 1
            aload 0 /* this */
            getfield org.h2.result.LazyResult.afterLast:Z
            ifeq 2
         1: .line 98
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.result.LazyResult.nextRow:[Lorg/h2/value/Value;
            ifnonnull 4
            aload 0 /* this */
            getfield org.h2.result.LazyResult.limit:I
            ifle 3
            aload 0 /* this */
            getfield org.h2.result.LazyResult.rowId:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.h2.result.LazyResult.limit:I
            if_icmpge 4
         3: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.h2.result.LazyResult.fetchNextRow:()[Lorg/h2/value/Value;
            putfield org.h2.result.LazyResult.nextRow:[Lorg/h2/value/Value;
         4: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.result.LazyResult.nextRow:[Lorg/h2/value/Value;
            ifnull 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/result/LazyResult;

  protected abstract org.h2.value.Value[] fetchNextRow();
    descriptor: ()[Lorg/h2/value/Value;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected boolean skipNextRow();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 119
            aload 0 /* this */
            invokevirtual org.h2.result.LazyResult.fetchNextRow:()[Lorg/h2/value/Value;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/LazyResult;

  public boolean isAfterLast();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 124
            aload 0 /* this */
            getfield org.h2.result.LazyResult.afterLast:Z
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;

  public int getRowId();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 129
            aload 0 /* this */
            getfield org.h2.result.LazyResult.rowId:I
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;

  public int getRowCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 134
            ldc "Row count is unknown for lazy result."
            invokestatic org.h2.message.DbException.getUnsupportedException:(Ljava/lang/String;)Lorg/h2/message/DbException;
            athrow
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;

  public boolean needToClose();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 139
            iconst_1
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;

  public boolean isClosed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 144
            aload 0 /* this */
            getfield org.h2.result.LazyResult.closed:Z
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 149
            aload 0 /* this */
            iconst_1
            putfield org.h2.result.LazyResult.closed:Z
         1: .line 150
            return
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/LazyResult;

  public java.lang.String getAlias(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // int i
         0: .line 154
            aload 0 /* this */
            getfield org.h2.result.LazyResult.expressions:[Lorg/h2/expression/Expression;
            iload 1 /* i */
            aaload
            invokevirtual org.h2.expression.Expression.getAlias:()Ljava/lang/String;
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public java.lang.String getSchemaName(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // int i
         0: .line 159
            aload 0 /* this */
            getfield org.h2.result.LazyResult.expressions:[Lorg/h2/expression/Expression;
            iload 1 /* i */
            aaload
            invokevirtual org.h2.expression.Expression.getSchemaName:()Ljava/lang/String;
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public java.lang.String getTableName(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // int i
         0: .line 164
            aload 0 /* this */
            getfield org.h2.result.LazyResult.expressions:[Lorg/h2/expression/Expression;
            iload 1 /* i */
            aaload
            invokevirtual org.h2.expression.Expression.getTableName:()Ljava/lang/String;
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public java.lang.String getColumnName(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // int i
         0: .line 169
            aload 0 /* this */
            getfield org.h2.result.LazyResult.expressions:[Lorg/h2/expression/Expression;
            iload 1 /* i */
            aaload
            invokevirtual org.h2.expression.Expression.getColumnName:()Ljava/lang/String;
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public org.h2.value.TypeInfo getColumnType(int);
    descriptor: (I)Lorg/h2/value/TypeInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // int i
         0: .line 174
            aload 0 /* this */
            getfield org.h2.result.LazyResult.expressions:[Lorg/h2/expression/Expression;
            iload 1 /* i */
            aaload
            invokevirtual org.h2.expression.Expression.getType:()Lorg/h2/value/TypeInfo;
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public boolean isAutoIncrement(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // int i
         0: .line 179
            aload 0 /* this */
            getfield org.h2.result.LazyResult.expressions:[Lorg/h2/expression/Expression;
            iload 1 /* i */
            aaload
            invokevirtual org.h2.expression.Expression.isAutoIncrement:()Z
            ireturn
        end local 1 // int i
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int getNullable(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // int i
         0: .line 184
            aload 0 /* this */
            getfield org.h2.result.LazyResult.expressions:[Lorg/h2/expression/Expression;
            iload 1 /* i */
            aaload
            invokevirtual org.h2.expression.Expression.getNullable:()I
            ireturn
        end local 1 // int i
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public void setFetchSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // int fetchSize
         0: .line 190
            return
        end local 1 // int fetchSize
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/h2/result/LazyResult;
            0    1     1  fetchSize  I
    MethodParameters:
           Name  Flags
      fetchSize  

  public int getFetchSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.LazyResult this
         0: .line 195
            iconst_1
            ireturn
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/LazyResult;

  public org.h2.result.ResultInterface createShallowCopy(org.h2.engine.SessionInterface);
    descriptor: (Lorg/h2/engine/SessionInterface;)Lorg/h2/result/ResultInterface;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.h2.result.LazyResult this
        start local 1 // org.h2.engine.SessionInterface targetSession
         0: .line 201
            aconst_null
            areturn
        end local 1 // org.h2.engine.SessionInterface targetSession
        end local 0 // org.h2.result.LazyResult this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/h2/result/LazyResult;
            0    1     1  targetSession  Lorg/h2/engine/SessionInterface;
    MethodParameters:
               Name  Flags
      targetSession  
}
SourceFile: "LazyResult.java"