public class org.h2.result.SimpleResult implements org.h2.result.ResultInterface
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.result.SimpleResult
  super_class: java.lang.Object
{
  private final java.util.ArrayList<org.h2.result.SimpleResult$Column> columns;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Lorg/h2/result/SimpleResult$Column;>;

  private final java.util.ArrayList<org.h2.value.Value[]> rows;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<[Lorg/h2/value/Value;>;

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

  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=1, locals=0, args_size=0
         0: .line 19
            ldc Lorg/h2/result/SimpleResult;
            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.result.SimpleResult.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleResult this
         0: .line 90
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 91
            aload 0 /* this */
            invokestatic org.h2.util.Utils.newSmallArrayList:()Ljava/util/ArrayList;
            putfield org.h2.result.SimpleResult.columns:Ljava/util/ArrayList;
         2: .line 92
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
         3: .line 93
            aload 0 /* this */
            iconst_m1
            putfield org.h2.result.SimpleResult.rowId:I
         4: .line 94
            return
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/h2/result/SimpleResult;

  private void <init>(java.util.ArrayList<org.h2.result.SimpleResult$Column>, java.util.ArrayList<org.h2.value.Value[]>);
    descriptor: (Ljava/util/ArrayList;Ljava/util/ArrayList;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // java.util.ArrayList columns
        start local 2 // java.util.ArrayList rows
         0: .line 96
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 97
            aload 0 /* this */
            aload 1 /* columns */
            putfield org.h2.result.SimpleResult.columns:Ljava/util/ArrayList;
         2: .line 98
            aload 0 /* this */
            aload 2 /* rows */
            putfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
         3: .line 99
            aload 0 /* this */
            iconst_m1
            putfield org.h2.result.SimpleResult.rowId:I
         4: .line 100
            return
        end local 2 // java.util.ArrayList rows
        end local 1 // java.util.ArrayList columns
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/h2/result/SimpleResult;
            0    5     1  columns  Ljava/util/ArrayList<Lorg/h2/result/SimpleResult$Column;>;
            0    5     2     rows  Ljava/util/ArrayList<[Lorg/h2/value/Value;>;
    Signature: (Ljava/util/ArrayList<Lorg/h2/result/SimpleResult$Column;>;Ljava/util/ArrayList<[Lorg/h2/value/Value;>;)V
    MethodParameters:
         Name  Flags
      columns  
      rows     

  public void addColumn(java.lang.String, java.lang.String, int, long, int);
    descriptor: (Ljava/lang/String;Ljava/lang/String;IJI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=7, args_size=6
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // java.lang.String alias
        start local 2 // java.lang.String columnName
        start local 3 // int columnType
        start local 4 // long columnPrecision
        start local 6 // int columnScale
         0: .line 112
            aload 0 /* this */
            new org.h2.result.SimpleResult$Column
            dup
            aload 1 /* alias */
            aload 2 /* columnName */
            iload 3 /* columnType */
            lload 4 /* columnPrecision */
            iload 6 /* columnScale */
            invokespecial org.h2.result.SimpleResult$Column.<init>:(Ljava/lang/String;Ljava/lang/String;IJI)V
            invokevirtual org.h2.result.SimpleResult.addColumn:(Lorg/h2/result/SimpleResult$Column;)V
         1: .line 113
            return
        end local 6 // int columnScale
        end local 4 // long columnPrecision
        end local 3 // int columnType
        end local 2 // java.lang.String columnName
        end local 1 // java.lang.String alias
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/h2/result/SimpleResult;
            0    2     1            alias  Ljava/lang/String;
            0    2     2       columnName  Ljava/lang/String;
            0    2     3       columnType  I
            0    2     4  columnPrecision  J
            0    2     6      columnScale  I
    MethodParameters:
                 Name  Flags
      alias            
      columnName       
      columnType       
      columnPrecision  
      columnScale      

  public void addColumn(java.lang.String, java.lang.String, org.h2.value.TypeInfo);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lorg/h2/value/TypeInfo;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // java.lang.String alias
        start local 2 // java.lang.String columnName
        start local 3 // org.h2.value.TypeInfo columnType
         0: .line 123
            aload 0 /* this */
            new org.h2.result.SimpleResult$Column
            dup
            aload 1 /* alias */
            aload 2 /* columnName */
            aload 3 /* columnType */
            invokespecial org.h2.result.SimpleResult$Column.<init>:(Ljava/lang/String;Ljava/lang/String;Lorg/h2/value/TypeInfo;)V
            invokevirtual org.h2.result.SimpleResult.addColumn:(Lorg/h2/result/SimpleResult$Column;)V
         1: .line 124
            return
        end local 3 // org.h2.value.TypeInfo columnType
        end local 2 // java.lang.String columnName
        end local 1 // java.lang.String alias
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/h2/result/SimpleResult;
            0    2     1       alias  Ljava/lang/String;
            0    2     2  columnName  Ljava/lang/String;
            0    2     3  columnType  Lorg/h2/value/TypeInfo;
    MethodParameters:
            Name  Flags
      alias       
      columnName  
      columnType  

  void addColumn(org.h2.result.SimpleResult$Column);
    descriptor: (Lorg/h2/result/SimpleResult$Column;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // org.h2.result.SimpleResult$Column column
         0: .line 132
            getstatic org.h2.result.SimpleResult.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.columns:Ljava/util/ArrayList;
            aload 1 /* column */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         2: .line 134
            return
        end local 1 // org.h2.result.SimpleResult$Column column
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/h2/result/SimpleResult;
            0    3     1  column  Lorg/h2/result/SimpleResult$Column;
    MethodParameters:
        Name  Flags
      column  

  public void addRow(org.h2.value.Value[]);
    descriptor: ([Lorg/h2/value/Value;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // org.h2.value.Value[] values
         0: .line 142
            getstatic org.h2.result.SimpleResult.$assertionsDisabled:Z
            ifne 1
            aload 1 /* values */
            arraylength
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.columns:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            if_icmpeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
            aload 1 /* values */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         2: .line 144
            return
        end local 1 // org.h2.value.Value[] values
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/h2/result/SimpleResult;
            0    3     1  values  [Lorg/h2/value/Value;
    MethodParameters:
        Name  Flags
      values  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleResult this
         0: .line 148
            aload 0 /* this */
            iconst_m1
            putfield org.h2.result.SimpleResult.rowId:I
         1: .line 149
            return
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/SimpleResult;

  public org.h2.value.Value[] currentRow();
    descriptor: ()[Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleResult this
         0: .line 153
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rowId:I
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.h2.value.Value[]
            areturn
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;

  public boolean next();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.h2.result.SimpleResult this
         0: .line 158
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 1 /* count */
        start local 1 // int count
         1: .line 159
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rowId:I
            iload 1 /* count */
            if_icmpge 4
         2: .line 160
            aload 0 /* this */
            dup
            getfield org.h2.result.SimpleResult.rowId:I
            iconst_1
            iadd
            dup_x1
            putfield org.h2.result.SimpleResult.rowId:I
            iload 1 /* count */
            if_icmpge 3
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         3: iconst_0
            ireturn
         4: .line 162
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int count
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/h2/result/SimpleResult;
            1    5     1  count  I

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

  public boolean isAfterLast();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleResult this
         0: .line 172
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rowId:I
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            if_icmplt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/SimpleResult;

  public int getVisibleColumnCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleResult this
         0: .line 177
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.columns:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ireturn
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;

  public int getRowCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleResult this
         0: .line 182
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ireturn
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleResult this
         0: .line 187
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rowId:I
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/SimpleResult;

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

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleResult this
         0: .line 198
            return
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;

  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.SimpleResult this
        start local 1 // int i
         0: .line 202
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.columns:Ljava/util/ArrayList;
            iload 1 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.h2.result.SimpleResult$Column
            getfield org.h2.result.SimpleResult$Column.alias:Ljava/lang/String;
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;
            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=1, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // int i
         0: .line 207
            ldc ""
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;
            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=1, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // int i
         0: .line 212
            ldc ""
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;
            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.SimpleResult this
        start local 1 // int i
         0: .line 217
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.columns:Ljava/util/ArrayList;
            iload 1 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.h2.result.SimpleResult$Column
            getfield org.h2.result.SimpleResult$Column.columnName:Ljava/lang/String;
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;
            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.SimpleResult this
        start local 1 // int i
         0: .line 222
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.columns:Ljava/util/ArrayList;
            iload 1 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.h2.result.SimpleResult$Column
            getfield org.h2.result.SimpleResult$Column.columnType:Lorg/h2/value/TypeInfo;
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public boolean isAutoIncrement(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // int i
         0: .line 227
            iconst_0
            ireturn
        end local 1 // int i
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int getNullable(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // int i
         0: .line 232
            iconst_2
            ireturn
        end local 1 // int i
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;
            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.SimpleResult this
        start local 1 // int fetchSize
         0: .line 238
            return
        end local 1 // int fetchSize
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/h2/result/SimpleResult;
            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.SimpleResult this
         0: .line 242
            iconst_1
            ireturn
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleResult;

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

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

  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=4, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleResult this
        start local 1 // org.h2.engine.SessionInterface targetSession
         0: .line 257
            new org.h2.result.SimpleResult
            dup
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.columns:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield org.h2.result.SimpleResult.rows:Ljava/util/ArrayList;
            invokespecial org.h2.result.SimpleResult.<init>:(Ljava/util/ArrayList;Ljava/util/ArrayList;)V
            areturn
        end local 1 // org.h2.engine.SessionInterface targetSession
        end local 0 // org.h2.result.SimpleResult this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/h2/result/SimpleResult;
            0    1     1  targetSession  Lorg/h2/engine/SessionInterface;
    MethodParameters:
               Name  Flags
      targetSession  
}
SourceFile: "SimpleResult.java"
NestMembers:
  org.h2.result.SimpleResult$Column
InnerClasses:
  final Column = org.h2.result.SimpleResult$Column of org.h2.result.SimpleResult