public class org.h2.index.PageBtreeNode extends org.h2.index.PageBtree
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.index.PageBtreeNode
  super_class: org.h2.index.PageBtree
{
  private static final int CHILD_OFFSET_PAIR_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 6

  private static final int MAX_KEY_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

  private final boolean pageStoreInternalCount;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int[] childPageIds;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

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

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

  private void <init>(org.h2.index.PageBtreeIndex, int, org.h2.store.Data);
    descriptor: (Lorg/h2/index/PageBtreeIndex;ILorg/h2/store/Data;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.index.PageBtreeIndex index
        start local 2 // int pageId
        start local 3 // org.h2.store.Data data
         0: .line 51
            aload 0 /* this */
            aload 1 /* index */
            iload 2 /* pageId */
            aload 3 /* data */
            invokespecial org.h2.index.PageBtree.<init>:(Lorg/h2/index/PageBtreeIndex;ILorg/h2/store/Data;)V
         1: .line 46
            aload 0 /* this */
            iconst_m1
            putfield org.h2.index.PageBtreeNode.rowCountStored:I
         2: .line 48
            aload 0 /* this */
            iconst_m1
            putfield org.h2.index.PageBtreeNode.rowCount:I
         3: .line 52
            aload 0 /* this */
            aload 1 /* index */
            invokevirtual org.h2.index.PageBtreeIndex.getDatabase:()Lorg/h2/engine/Database;
         4: .line 53
            invokevirtual org.h2.engine.Database.getSettings:()Lorg/h2/engine/DbSettings;
            getfield org.h2.engine.DbSettings.pageStoreInternalCount:Z
         5: .line 52
            putfield org.h2.index.PageBtreeNode.pageStoreInternalCount:Z
         6: .line 54
            return
        end local 3 // org.h2.store.Data data
        end local 2 // int pageId
        end local 1 // org.h2.index.PageBtreeIndex index
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/h2/index/PageBtreeNode;
            0    7     1   index  Lorg/h2/index/PageBtreeIndex;
            0    7     2  pageId  I
            0    7     3    data  Lorg/h2/store/Data;
    MethodParameters:
        Name  Flags
      index   
      pageId  
      data    

  public static org.h2.store.Page read(org.h2.index.PageBtreeIndex, org.h2.store.Data, int);
    descriptor: (Lorg/h2/index/PageBtreeIndex;Lorg/h2/store/Data;I)Lorg/h2/store/Page;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.h2.index.PageBtreeIndex index
        start local 1 // org.h2.store.Data data
        start local 2 // int pageId
         0: .line 65
            new org.h2.index.PageBtreeNode
            dup
            aload 0 /* index */
            iload 2 /* pageId */
            aload 1 /* data */
            invokespecial org.h2.index.PageBtreeNode.<init>:(Lorg/h2/index/PageBtreeIndex;ILorg/h2/store/Data;)V
            astore 3 /* p */
        start local 3 // org.h2.index.PageBtreeNode p
         1: .line 66
            aload 3 /* p */
            invokevirtual org.h2.index.PageBtreeNode.read:()V
         2: .line 67
            aload 3 /* p */
            areturn
        end local 3 // org.h2.index.PageBtreeNode p
        end local 2 // int pageId
        end local 1 // org.h2.store.Data data
        end local 0 // org.h2.index.PageBtreeIndex index
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0   index  Lorg/h2/index/PageBtreeIndex;
            0    3     1    data  Lorg/h2/store/Data;
            0    3     2  pageId  I
            1    3     3       p  Lorg/h2/index/PageBtreeNode;
    MethodParameters:
        Name  Flags
      index   
      data    
      pageId  

  static org.h2.index.PageBtreeNode create(org.h2.index.PageBtreeIndex, int, int);
    descriptor: (Lorg/h2/index/PageBtreeIndex;II)Lorg/h2/index/PageBtreeNode;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.h2.index.PageBtreeIndex index
        start local 1 // int pageId
        start local 2 // int parentPageId
         0: .line 80
            new org.h2.index.PageBtreeNode
            dup
            aload 0 /* index */
            iload 1 /* pageId */
            aload 0 /* index */
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
         1: .line 81
            invokevirtual org.h2.store.PageStore.createData:()Lorg/h2/store/Data;
         2: .line 80
            invokespecial org.h2.index.PageBtreeNode.<init>:(Lorg/h2/index/PageBtreeIndex;ILorg/h2/store/Data;)V
            astore 3 /* p */
        start local 3 // org.h2.index.PageBtreeNode p
         3: .line 82
            aload 0 /* index */
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 3 /* p */
            aconst_null
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         4: .line 83
            aload 3 /* p */
            iload 2 /* parentPageId */
            putfield org.h2.index.PageBtreeNode.parentPageId:I
         5: .line 84
            aload 3 /* p */
            invokevirtual org.h2.index.PageBtreeNode.writeHead:()V
         6: .line 86
            aload 3 /* p */
            aload 3 /* p */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.length:()I
            iconst_4
            iadd
            putfield org.h2.index.PageBtreeNode.start:I
         7: .line 87
            aload 3 /* p */
            getstatic org.h2.result.SearchRow.EMPTY_ARRAY:[Lorg/h2/result/SearchRow;
            putfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
         8: .line 88
            aload 3 /* p */
            getfield org.h2.index.PageBtreeNode.pageStoreInternalCount:Z
            ifeq 10
         9: .line 89
            aload 3 /* p */
            iconst_0
            putfield org.h2.index.PageBtreeNode.rowCount:I
        10: .line 91
      StackMap locals: org.h2.index.PageBtreeNode
      StackMap stack:
            aload 3 /* p */
            areturn
        end local 3 // org.h2.index.PageBtreeNode p
        end local 2 // int parentPageId
        end local 1 // int pageId
        end local 0 // org.h2.index.PageBtreeIndex index
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0         index  Lorg/h2/index/PageBtreeIndex;
            0   11     1        pageId  I
            0   11     2  parentPageId  I
            3   11     3             p  Lorg/h2/index/PageBtreeNode;
    MethodParameters:
              Name  Flags
      index         
      pageId        
      parentPageId  

  private void read();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 95
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.reset:()V
         1: .line 96
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readByte:()B
            istore 1 /* type */
        start local 1 // int type
         2: .line 97
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readShortInt:()S
            pop
         3: .line 98
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readInt:()I
            putfield org.h2.index.PageBtreeNode.parentPageId:I
         4: .line 99
            aload 0 /* this */
            iload 1 /* type */
            bipush 16
            iand
            ifne 5
            iconst_1
            goto 6
      StackMap locals: org.h2.index.PageBtreeNode int
      StackMap stack: org.h2.index.PageBtreeNode
         5: iconst_0
      StackMap locals: org.h2.index.PageBtreeNode int
      StackMap stack: org.h2.index.PageBtreeNode int
         6: putfield org.h2.index.PageBtreeNode.onlyPosition:Z
         7: .line 100
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readVarInt:()I
            istore 2 /* indexId */
        start local 2 // int indexId
         8: .line 101
            iload 2 /* indexId */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getId:()I
            if_icmpeq 14
         9: .line 102
            ldc 90030
        10: .line 103
            new java.lang.StringBuilder
            dup
            ldc "page:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.getPos:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " expected index:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getId:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        11: .line 104
            ldc "got:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* indexId */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        12: .line 103
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        13: .line 102
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
        14: .line 106
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readInt:()I
            dup_x1
            putfield org.h2.index.PageBtreeNode.rowCountStored:I
            putfield org.h2.index.PageBtreeNode.rowCount:I
        15: .line 107
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readShortInt:()S
            putfield org.h2.index.PageBtreeNode.entryCount:I
        16: .line 108
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            newarray 10
            putfield org.h2.index.PageBtreeNode.childPageIds:[I
        17: .line 109
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readInt:()I
            iastore
        18: .line 110
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            ifne 19
            getstatic org.h2.result.SearchRow.EMPTY_ARRAY:[Lorg/h2/result/SearchRow;
            goto 20
      StackMap locals:
      StackMap stack: org.h2.index.PageBtreeNode
        19: aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            anewarray org.h2.result.SearchRow
      StackMap locals: org.h2.index.PageBtreeNode int int
      StackMap stack: org.h2.index.PageBtreeNode org.h2.result.SearchRow[]
        20: putfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
        21: .line 111
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            invokestatic org.h2.util.Utils.newIntArray:(I)[I
            putfield org.h2.index.PageBtreeNode.offsets:[I
        22: .line 112
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        23: goto 27
        24: .line 113
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 3 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readInt:()I
            iastore
        25: .line 114
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            iload 3 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.readShortInt:()S
            iastore
        26: .line 112
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        27: iload 3 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmplt 24
        end local 3 // int i
        28: .line 116
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.check:()V
        29: .line 117
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.length:()I
            putfield org.h2.index.PageBtreeNode.start:I
        30: .line 118
            aload 0 /* this */
            iconst_1
            putfield org.h2.index.PageBtreeNode.written:Z
        31: .line 119
            return
        end local 2 // int indexId
        end local 1 // int type
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   32     0     this  Lorg/h2/index/PageBtreeNode;
            2   32     1     type  I
            8   32     2  indexId  I
           23   28     3        i  I

  private int addChildTry(org.h2.result.SearchRow);
    descriptor: (Lorg/h2/result/SearchRow;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.result.SearchRow row
         0: .line 129
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_4
            if_icmpge 2
         1: .line 130
            iconst_m1
            ireturn
         2: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.onlyPosition:Z
            ifeq 5
         3: .line 138
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            bipush 10
            iadd
            istore 2 /* startData */
        start local 2 // int startData
         4: .line 139
            goto 11
        end local 2 // int startData
         5: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 1 /* row */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.onlyPosition:Z
            invokevirtual org.h2.index.PageBtreeIndex.getRowSize:(Lorg/h2/store/Data;Lorg/h2/result/SearchRow;Z)I
            istore 3 /* rowLength */
        start local 3 // int rowLength
         6: .line 141
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getPageSize:()I
            istore 4 /* pageSize */
        start local 4 // int pageSize
         7: .line 142
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            ifne 8
            iload 4 /* pageSize */
            goto 9
      StackMap locals: org.h2.index.PageBtreeNode org.h2.result.SearchRow top int int
      StackMap stack:
         8: aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            isub
            iaload
      StackMap locals:
      StackMap stack: int
         9: istore 5 /* last */
        start local 5 // int last
        10: .line 143
            iload 5 /* last */
            iload 3 /* rowLength */
            isub
            istore 2 /* startData */
        end local 5 // int last
        end local 4 // int pageSize
        end local 3 // int rowLength
        start local 2 // int startData
        11: .line 145
      StackMap locals: org.h2.index.PageBtreeNode org.h2.result.SearchRow int
      StackMap stack:
            iload 2 /* startData */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.start:I
            bipush 6
            iadd
            if_icmpge 13
        12: .line 146
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_2
            idiv
            ireturn
        13: .line 148
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // int startData
        end local 1 // org.h2.result.SearchRow row
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lorg/h2/index/PageBtreeNode;
            0   14     1        row  Lorg/h2/result/SearchRow;
            4    5     2  startData  I
           11   14     2  startData  I
            6   11     3  rowLength  I
            7   11     4   pageSize  I
           10   11     5       last  I
    MethodParameters:
      Name  Flags
      row   

  private void addChild(int, int, org.h2.result.SearchRow);
    descriptor: (IILorg/h2/result/SearchRow;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=4
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // int x
        start local 2 // int childPageId
        start local 3 // org.h2.result.SearchRow row
         0: .line 160
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 3 /* row */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.onlyPosition:Z
            invokevirtual org.h2.index.PageBtreeIndex.getRowSize:(Lorg/h2/store/Data;Lorg/h2/result/SearchRow;Z)I
            istore 4 /* rowLength */
        start local 4 // int rowLength
         1: .line 161
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getPageSize:()I
            istore 5 /* pageSize */
        start local 5 // int pageSize
         2: .line 162
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            ifne 3
            iload 5 /* pageSize */
            goto 4
      StackMap locals: int int
      StackMap stack:
         3: aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            isub
            iaload
      StackMap locals:
      StackMap stack: int
         4: istore 6 /* last */
        start local 6 // int last
         5: .line 163
            iload 6 /* last */
            iload 4 /* rowLength */
            isub
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.start:I
            bipush 6
            iadd
            if_icmpge 21
         6: .line 164
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.readAllRows:()V
         7: .line 165
            aload 0 /* this */
            iconst_1
            putfield org.h2.index.PageBtreeNode.onlyPosition:Z
         8: .line 167
            iload 5 /* pageSize */
            istore 7 /* o */
        start local 7 // int o
         9: .line 168
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        10: goto 14
        11: .line 169
      StackMap locals: int int int
      StackMap stack:
            iload 7 /* o */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 0 /* this */
            iload 8 /* i */
            invokevirtual org.h2.index.PageBtreeNode.getRow:(I)Lorg/h2/result/SearchRow;
            iconst_1
            invokevirtual org.h2.index.PageBtreeIndex.getRowSize:(Lorg/h2/store/Data;Lorg/h2/result/SearchRow;Z)I
            isub
            istore 7 /* o */
        12: .line 170
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            iload 8 /* i */
            iload 7 /* o */
            iastore
        13: .line 168
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 8 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmplt 11
        end local 8 // int i
        15: .line 172
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            ifne 16
            iload 5 /* pageSize */
            goto 17
      StackMap locals:
      StackMap stack:
        16: aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            isub
            iaload
      StackMap locals:
      StackMap stack: int
        17: istore 6 /* last */
        18: .line 173
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 3 /* row */
            iconst_1
            invokevirtual org.h2.index.PageBtreeIndex.getRowSize:(Lorg/h2/store/Data;Lorg/h2/result/SearchRow;Z)I
            istore 4 /* rowLength */
        19: .line 174
            iload 6 /* last */
            iload 4 /* rowLength */
            isub
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.start:I
            bipush 6
            iadd
            if_icmpge 21
        20: .line 175
            invokestatic org.h2.message.DbException.throwInternalError:()Ljava/lang/RuntimeException;
            athrow
        end local 7 // int o
        21: .line 178
      StackMap locals:
      StackMap stack:
            iload 6 /* last */
            iload 4 /* rowLength */
            isub
            istore 7 /* offset */
        start local 7 // int offset
        22: .line 179
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            ifle 27
        23: .line 180
            iload 1 /* x */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmpge 27
        24: .line 181
            iload 1 /* x */
            ifne 25
            iload 5 /* pageSize */
            goto 26
      StackMap locals: int
      StackMap stack:
        25: aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            iload 1 /* x */
            iconst_1
            isub
            iaload
      StackMap locals:
      StackMap stack: int
        26: iload 4 /* rowLength */
            isub
            istore 7 /* offset */
        27: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iload 1 /* x */
            aload 3 /* row */
            invokestatic org.h2.index.PageBtreeNode.insert:([Ljava/lang/Object;IILjava/lang/Object;)[Ljava/lang/Object;
            checkcast org.h2.result.SearchRow[]
            putfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
        28: .line 185
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iload 1 /* x */
            iload 7 /* offset */
            invokestatic org.h2.index.PageBtreeNode.insert:([IIII)[I
            putfield org.h2.index.PageBtreeNode.offsets:[I
        29: .line 186
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            iload 1 /* x */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            iload 4 /* rowLength */
            ineg
            invokestatic org.h2.index.PageBtreeNode.add:([IIII)V
        30: .line 187
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            iload 1 /* x */
            iconst_1
            iadd
            iload 2 /* childPageId */
            invokestatic org.h2.index.PageBtreeNode.insert:([IIII)[I
            putfield org.h2.index.PageBtreeNode.childPageIds:[I
        31: .line 188
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeNode.start:I
            bipush 6
            iadd
            putfield org.h2.index.PageBtreeNode.start:I
        32: .line 189
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.pageStoreInternalCount:Z
            ifeq 35
        33: .line 190
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rowCount:I
            iconst_m1
            if_icmpeq 35
        34: .line 191
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeNode.rowCount:I
            iload 7 /* offset */
            iadd
            putfield org.h2.index.PageBtreeNode.rowCount:I
        35: .line 194
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            putfield org.h2.index.PageBtreeNode.entryCount:I
        36: .line 195
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.PageBtreeNode.written:Z
        37: .line 196
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getChangeCount:()J
            putfield org.h2.index.PageBtreeNode.changeCount:J
        38: .line 197
            return
        end local 7 // int offset
        end local 6 // int last
        end local 5 // int pageSize
        end local 4 // int rowLength
        end local 3 // org.h2.result.SearchRow row
        end local 2 // int childPageId
        end local 1 // int x
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   39     0         this  Lorg/h2/index/PageBtreeNode;
            0   39     1            x  I
            0   39     2  childPageId  I
            0   39     3          row  Lorg/h2/result/SearchRow;
            1   39     4    rowLength  I
            2   39     5     pageSize  I
            5   39     6         last  I
            9   21     7            o  I
           10   15     8            i  I
           22   39     7       offset  I
    MethodParameters:
             Name  Flags
      x            
      childPageId  
      row          

  int addRowTry(org.h2.result.SearchRow);
    descriptor: (Lorg/h2/result/SearchRow;)I
    flags: (0x0000) 
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.result.SearchRow row
         0: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* row */
            iconst_0
            iconst_1
            iconst_1
            invokevirtual org.h2.index.PageBtreeNode.find:(Lorg/h2/result/SearchRow;ZZZ)I
            istore 2 /* x */
        start local 2 // int x
         1: .line 203
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 2 /* x */
            iaload
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            astore 3 /* page */
        start local 3 // org.h2.index.PageBtree page
         2: .line 204
            aload 3 /* page */
            aload 1 /* row */
            invokevirtual org.h2.index.PageBtree.addRowTry:(Lorg/h2/result/SearchRow;)I
            istore 4 /* splitPoint */
        start local 4 // int splitPoint
         3: .line 205
            iload 4 /* splitPoint */
            iconst_m1
            if_icmpne 5
         4: .line 206
            goto 17
         5: .line 208
      StackMap locals: int org.h2.index.PageBtree int
      StackMap stack:
            aload 3 /* page */
            iload 4 /* splitPoint */
            iconst_1
            isub
            invokevirtual org.h2.index.PageBtree.getRow:(I)Lorg/h2/result/SearchRow;
            astore 5 /* pivot */
        start local 5 // org.h2.result.SearchRow pivot
         6: .line 209
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         7: .line 210
            aload 0 /* this */
            aload 5 /* pivot */
            invokevirtual org.h2.index.PageBtreeNode.addChildTry:(Lorg/h2/result/SearchRow;)I
            istore 6 /* splitPoint2 */
        start local 6 // int splitPoint2
         8: .line 211
            iload 6 /* splitPoint2 */
            iconst_m1
            if_icmpeq 10
         9: .line 212
            iload 6 /* splitPoint2 */
            ireturn
        10: .line 214
      StackMap locals: org.h2.result.SearchRow int
      StackMap stack:
            aload 3 /* page */
            iload 4 /* splitPoint */
            invokevirtual org.h2.index.PageBtree.split:(I)Lorg/h2/index/PageBtree;
            astore 7 /* page2 */
        start local 7 // org.h2.index.PageBtree page2
        11: .line 215
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.readAllRows:()V
        12: .line 216
            aload 0 /* this */
            iload 2 /* x */
            aload 7 /* page2 */
            invokevirtual org.h2.index.PageBtree.getPos:()I
            aload 5 /* pivot */
            invokevirtual org.h2.index.PageBtreeNode.addChild:(IILorg/h2/result/SearchRow;)V
        13: .line 217
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 3 /* page */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        14: .line 218
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 7 /* page2 */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        15: .line 219
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        end local 7 // org.h2.index.PageBtree page2
        end local 6 // int splitPoint2
        end local 5 // org.h2.result.SearchRow pivot
        end local 4 // int splitPoint
        end local 3 // org.h2.index.PageBtree page
        end local 2 // int x
        16: .line 201
            goto 0
        17: .line 221
      StackMap locals: org.h2.index.PageBtreeNode org.h2.result.SearchRow
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual org.h2.index.PageBtreeNode.updateRowCount:(I)V
        18: .line 222
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.PageBtreeNode.written:Z
        19: .line 223
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getChangeCount:()J
            putfield org.h2.index.PageBtreeNode.changeCount:J
        20: .line 224
            iconst_m1
            ireturn
        end local 1 // org.h2.result.SearchRow row
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   21     0         this  Lorg/h2/index/PageBtreeNode;
            0   21     1          row  Lorg/h2/result/SearchRow;
            1   16     2            x  I
            2   16     3         page  Lorg/h2/index/PageBtree;
            3   16     4   splitPoint  I
            6   16     5        pivot  Lorg/h2/result/SearchRow;
            8   16     6  splitPoint2  I
           11   16     7        page2  Lorg/h2/index/PageBtree;
    MethodParameters:
      Name  Flags
      row   

  private void updateRowCount(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // int offset
         0: .line 228
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rowCount:I
            iconst_m1
            if_icmpeq 2
         1: .line 229
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeNode.rowCount:I
            iload 1 /* offset */
            iadd
            putfield org.h2.index.PageBtreeNode.rowCount:I
         2: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rowCountStored:I
            iconst_m1
            if_icmpeq 8
         3: .line 232
            aload 0 /* this */
            iconst_m1
            putfield org.h2.index.PageBtreeNode.rowCountStored:I
         4: .line 233
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         5: .line 234
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.written:Z
            ifeq 7
         6: .line 235
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.writeHead:()V
         7: .line 237
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
         8: .line 239
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int offset
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/h2/index/PageBtreeNode;
            0    9     1  offset  I
    MethodParameters:
        Name  Flags
      offset  

  org.h2.index.PageBtree split(int);
    descriptor: (I)Lorg/h2/index/PageBtree;
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // int splitPoint
         0: .line 243
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.allocatePage:()I
            istore 2 /* newPageId */
        start local 2 // int newPageId
         1: .line 244
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            iload 2 /* newPageId */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            invokestatic org.h2.index.PageBtreeNode.create:(Lorg/h2/index/PageBtreeIndex;II)Lorg/h2/index/PageBtreeNode;
            astore 3 /* p2 */
        start local 3 // org.h2.index.PageBtreeNode p2
         2: .line 245
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         3: .line 246
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.onlyPosition:Z
            ifeq 5
         4: .line 248
            aload 3 /* p2 */
            iconst_1
            putfield org.h2.index.PageBtreeNode.onlyPosition:Z
         5: .line 250
      StackMap locals: int org.h2.index.PageBtreeNode
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 1 /* splitPoint */
            iaload
            istore 4 /* firstChild */
        start local 4 // int firstChild
         6: .line 251
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.readAllRows:()V
         7: .line 252
            goto 10
         8: .line 253
      StackMap locals: int
      StackMap stack:
            aload 3 /* p2 */
            aload 3 /* p2 */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 1 /* splitPoint */
            iconst_1
            iadd
            iaload
            aload 0 /* this */
            iload 1 /* splitPoint */
            invokevirtual org.h2.index.PageBtreeNode.getRow:(I)Lorg/h2/result/SearchRow;
            invokevirtual org.h2.index.PageBtreeNode.addChild:(IILorg/h2/result/SearchRow;)V
         9: .line 254
            aload 0 /* this */
            iload 1 /* splitPoint */
            invokevirtual org.h2.index.PageBtreeNode.removeChild:(I)V
        10: .line 252
      StackMap locals:
      StackMap stack:
            iload 1 /* splitPoint */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmplt 8
        11: .line 256
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 1 /* splitPoint */
            iconst_1
            isub
            iaload
            istore 5 /* lastChild */
        start local 5 // int lastChild
        12: .line 257
            aload 0 /* this */
            iload 1 /* splitPoint */
            iconst_1
            isub
            invokevirtual org.h2.index.PageBtreeNode.removeChild:(I)V
        13: .line 258
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 1 /* splitPoint */
            iconst_1
            isub
            iload 5 /* lastChild */
            iastore
        14: .line 259
            aload 3 /* p2 */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            ifnonnull 16
        15: .line 260
            aload 3 /* p2 */
            iconst_1
            newarray 10
            putfield org.h2.index.PageBtreeNode.childPageIds:[I
        16: .line 262
      StackMap locals: int
      StackMap stack:
            aload 3 /* p2 */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iconst_0
            iload 4 /* firstChild */
            iastore
        17: .line 263
            aload 3 /* p2 */
            invokevirtual org.h2.index.PageBtreeNode.remapChildren:()V
        18: .line 264
            aload 3 /* p2 */
            areturn
        end local 5 // int lastChild
        end local 4 // int firstChild
        end local 3 // org.h2.index.PageBtreeNode p2
        end local 2 // int newPageId
        end local 1 // int splitPoint
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lorg/h2/index/PageBtreeNode;
            0   19     1  splitPoint  I
            1   19     2   newPageId  I
            2   19     3          p2  Lorg/h2/index/PageBtreeNode;
            6   19     4  firstChild  I
           12   19     5   lastChild  I
    MethodParameters:
            Name  Flags
      splitPoint  

  protected void remapChildren();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 269
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 7
         2: .line 270
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 1 /* i */
            iaload
            istore 2 /* child */
        start local 2 // int child
         3: .line 271
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            iload 2 /* child */
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            astore 3 /* p */
        start local 3 // org.h2.index.PageBtree p
         4: .line 272
            aload 3 /* p */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.getPos:()I
            invokevirtual org.h2.index.PageBtree.setParentPageId:(I)V
         5: .line 273
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 3 /* p */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        end local 3 // org.h2.index.PageBtree p
        end local 2 // int child
         6: .line 269
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            if_icmplt 2
        end local 1 // int i
         8: .line 275
            return
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/h2/index/PageBtreeNode;
            1    8     1      i  I
            3    6     2  child  I
            4    6     3      p  Lorg/h2/index/PageBtree;

  void init(org.h2.index.PageBtree, org.h2.result.SearchRow, org.h2.index.PageBtree);
    descriptor: (Lorg/h2/index/PageBtree;Lorg/h2/result/SearchRow;Lorg/h2/index/PageBtree;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.index.PageBtree page1
        start local 2 // org.h2.result.SearchRow pivot
        start local 3 // org.h2.index.PageBtree page2
         0: .line 285
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.PageBtreeNode.entryCount:I
         1: .line 286
            aload 0 /* this */
            iconst_1
            newarray 10
            dup
            iconst_0
            aload 1 /* page1 */
            invokevirtual org.h2.index.PageBtree.getPos:()I
            iastore
            putfield org.h2.index.PageBtreeNode.childPageIds:[I
         2: .line 287
            aload 0 /* this */
            getstatic org.h2.result.SearchRow.EMPTY_ARRAY:[Lorg/h2/result/SearchRow;
            putfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
         3: .line 288
            aload 0 /* this */
            getstatic org.h2.util.Utils.EMPTY_INT_ARRAY:[I
            putfield org.h2.index.PageBtreeNode.offsets:[I
         4: .line 289
            aload 0 /* this */
            iconst_0
            aload 3 /* page2 */
            invokevirtual org.h2.index.PageBtree.getPos:()I
            aload 2 /* pivot */
            invokevirtual org.h2.index.PageBtreeNode.addChild:(IILorg/h2/result/SearchRow;)V
         5: .line 290
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.pageStoreInternalCount:Z
            ifeq 7
         6: .line 291
            aload 0 /* this */
            aload 1 /* page1 */
            invokevirtual org.h2.index.PageBtree.getRowCount:()I
            aload 3 /* page2 */
            invokevirtual org.h2.index.PageBtree.getRowCount:()I
            iadd
            putfield org.h2.index.PageBtreeNode.rowCount:I
         7: .line 293
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.check:()V
         8: .line 294
            return
        end local 3 // org.h2.index.PageBtree page2
        end local 2 // org.h2.result.SearchRow pivot
        end local 1 // org.h2.index.PageBtree page1
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/h2/index/PageBtreeNode;
            0    9     1  page1  Lorg/h2/index/PageBtree;
            0    9     2  pivot  Lorg/h2/result/SearchRow;
            0    9     3  page2  Lorg/h2/index/PageBtree;
    MethodParameters:
       Name  Flags
      page1  
      pivot  
      page2  

  void find(org.h2.index.PageBtreeCursor, org.h2.result.SearchRow, boolean);
    descriptor: (Lorg/h2/index/PageBtreeCursor;Lorg/h2/result/SearchRow;Z)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.index.PageBtreeCursor cursor
        start local 2 // org.h2.result.SearchRow first
        start local 3 // boolean bigger
         0: .line 298
            aload 0 /* this */
            aload 2 /* first */
            iload 3 /* bigger */
            iconst_0
            iconst_0
            invokevirtual org.h2.index.PageBtreeNode.find:(Lorg/h2/result/SearchRow;ZZZ)I
            istore 4 /* i */
        start local 4 // int i
         1: .line 299
            iload 4 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmple 7
         2: .line 300
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            ifne 4
         3: .line 301
            return
         4: .line 303
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            checkcast org.h2.index.PageBtreeNode
            astore 5 /* next */
        start local 5 // org.h2.index.PageBtreeNode next
         5: .line 304
            aload 5 /* next */
            aload 1 /* cursor */
            aload 2 /* first */
            iload 3 /* bigger */
            invokevirtual org.h2.index.PageBtreeNode.find:(Lorg/h2/index/PageBtreeCursor;Lorg/h2/result/SearchRow;Z)V
         6: .line 305
            return
        end local 5 // org.h2.index.PageBtreeNode next
         7: .line 307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 4 /* i */
            iaload
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            astore 5 /* page */
        start local 5 // org.h2.index.PageBtree page
         8: .line 308
            aload 5 /* page */
            aload 1 /* cursor */
            aload 2 /* first */
            iload 3 /* bigger */
            invokevirtual org.h2.index.PageBtree.find:(Lorg/h2/index/PageBtreeCursor;Lorg/h2/result/SearchRow;Z)V
         9: .line 309
            return
        end local 5 // org.h2.index.PageBtree page
        end local 4 // int i
        end local 3 // boolean bigger
        end local 2 // org.h2.result.SearchRow first
        end local 1 // org.h2.index.PageBtreeCursor cursor
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/h2/index/PageBtreeNode;
            0   10     1  cursor  Lorg/h2/index/PageBtreeCursor;
            0   10     2   first  Lorg/h2/result/SearchRow;
            0   10     3  bigger  Z
            1   10     4       i  I
            5    7     5    next  Lorg/h2/index/PageBtreeNode;
            8   10     5    page  Lorg/h2/index/PageBtree;
    MethodParameters:
        Name  Flags
      cursor  
      first   
      bigger  

  void last(org.h2.index.PageBtreeCursor);
    descriptor: (Lorg/h2/index/PageBtreeCursor;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.index.PageBtreeCursor cursor
         0: .line 313
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iaload
            istore 2 /* child */
        start local 2 // int child
         1: .line 314
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            iload 2 /* child */
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            aload 1 /* cursor */
            invokevirtual org.h2.index.PageBtree.last:(Lorg/h2/index/PageBtreeCursor;)V
         2: .line 315
            return
        end local 2 // int child
        end local 1 // org.h2.index.PageBtreeCursor cursor
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/h2/index/PageBtreeNode;
            0    3     1  cursor  Lorg/h2/index/PageBtreeCursor;
            1    3     2   child  I
    MethodParameters:
        Name  Flags
      cursor  

  org.h2.index.PageBtreeLeaf getFirstLeaf();
    descriptor: ()Lorg/h2/index/PageBtreeLeaf;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 319
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iconst_0
            iaload
            istore 1 /* child */
        start local 1 // int child
         1: .line 320
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            iload 1 /* child */
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            invokevirtual org.h2.index.PageBtree.getFirstLeaf:()Lorg/h2/index/PageBtreeLeaf;
            areturn
        end local 1 // int child
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/h2/index/PageBtreeNode;
            1    2     1  child  I

  org.h2.index.PageBtreeLeaf getLastLeaf();
    descriptor: ()Lorg/h2/index/PageBtreeLeaf;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 325
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iaload
            istore 1 /* child */
        start local 1 // int child
         1: .line 326
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            iload 1 /* child */
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            invokevirtual org.h2.index.PageBtree.getLastLeaf:()Lorg/h2/index/PageBtreeLeaf;
            areturn
        end local 1 // int child
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/h2/index/PageBtreeNode;
            1    2     1  child  I

  org.h2.result.SearchRow remove(org.h2.result.SearchRow);
    descriptor: (Lorg/h2/result/SearchRow;)Lorg/h2/result/SearchRow;
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.result.SearchRow row
         0: .line 331
            aload 0 /* this */
            aload 1 /* row */
            iconst_0
            iconst_0
            iconst_1
            invokevirtual org.h2.index.PageBtreeNode.find:(Lorg/h2/result/SearchRow;ZZZ)I
            istore 2 /* at */
        start local 2 // int at
         1: .line 334
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 2 /* at */
            iaload
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            astore 3 /* page */
        start local 3 // org.h2.index.PageBtree page
         2: .line 335
            aload 3 /* page */
            aload 1 /* row */
            invokevirtual org.h2.index.PageBtree.remove:(Lorg/h2/result/SearchRow;)Lorg/h2/result/SearchRow;
            astore 4 /* last */
        start local 4 // org.h2.result.SearchRow last
         3: .line 336
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         4: .line 337
            aload 0 /* this */
            iconst_m1
            invokevirtual org.h2.index.PageBtreeNode.updateRowCount:(I)V
         5: .line 338
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.PageBtreeNode.written:Z
         6: .line 339
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getChangeCount:()J
            putfield org.h2.index.PageBtreeNode.changeCount:J
         7: .line 340
            aload 4 /* last */
            ifnonnull 9
         8: .line 342
            aconst_null
            areturn
         9: .line 343
      StackMap locals: int org.h2.index.PageBtree org.h2.result.SearchRow
      StackMap stack:
            aload 4 /* last */
            aload 1 /* row */
            if_acmpne 20
        10: .line 345
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 3 /* page */
            invokevirtual org.h2.index.PageBtree.getPos:()I
            invokevirtual org.h2.store.PageStore.free:(I)V
        11: .line 346
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            if_icmpge 13
        12: .line 348
            aload 1 /* row */
            areturn
        13: .line 350
      StackMap locals:
      StackMap stack:
            iload 2 /* at */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmpne 16
        14: .line 352
            aload 0 /* this */
            iload 2 /* at */
            iconst_1
            isub
            invokevirtual org.h2.index.PageBtreeNode.getRow:(I)Lorg/h2/result/SearchRow;
            astore 4 /* last */
        15: .line 353
            goto 17
        16: .line 354
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 4 /* last */
        17: .line 356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* at */
            invokevirtual org.h2.index.PageBtreeNode.removeChild:(I)V
        18: .line 357
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        19: .line 358
            aload 4 /* last */
            areturn
        20: .line 361
      StackMap locals:
      StackMap stack:
            iload 2 /* at */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmpne 22
        21: .line 362
            aload 4 /* last */
            areturn
        22: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 2 /* at */
            iaload
            istore 5 /* child */
        start local 5 // int child
        23: .line 365
            aload 0 /* this */
            iload 2 /* at */
            invokevirtual org.h2.index.PageBtreeNode.removeChild:(I)V
        24: .line 368
            aload 0 /* this */
            iload 2 /* at */
            iload 5 /* child */
            aload 4 /* last */
            invokevirtual org.h2.index.PageBtreeNode.addChild:(IILorg/h2/result/SearchRow;)V
        25: .line 370
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 2 /* at */
            iaload
            istore 6 /* temp */
        start local 6 // int temp
        26: .line 371
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 2 /* at */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 2 /* at */
            iconst_1
            iadd
            iaload
            iastore
        27: .line 372
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 2 /* at */
            iconst_1
            iadd
            iload 6 /* temp */
            iastore
        28: .line 373
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        29: .line 374
            aconst_null
            areturn
        end local 6 // int temp
        end local 5 // int child
        end local 4 // org.h2.result.SearchRow last
        end local 3 // org.h2.index.PageBtree page
        end local 2 // int at
        end local 1 // org.h2.result.SearchRow row
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   30     0   this  Lorg/h2/index/PageBtreeNode;
            0   30     1    row  Lorg/h2/result/SearchRow;
            1   30     2     at  I
            2   30     3   page  Lorg/h2/index/PageBtree;
            3   30     4   last  Lorg/h2/result/SearchRow;
           23   30     5  child  I
           26   30     6   temp  I
    MethodParameters:
      Name  Flags
      row   

  int getRowCount();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 379
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rowCount:I
            iconst_m1
            if_icmpne 14
         1: .line 380
            iconst_0
            istore 1 /* count */
        start local 1 // int count
         2: .line 381
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 12
         4: .line 382
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 2 /* i */
            iaload
            istore 3 /* child */
        start local 3 // int child
         5: .line 383
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            iload 3 /* child */
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            astore 4 /* page */
        start local 4 // org.h2.index.PageBtree page
         6: .line 384
            iload 1 /* count */
            aload 4 /* page */
            invokevirtual org.h2.index.PageBtree.getRowCount:()I
            iadd
            istore 1 /* count */
         7: .line 385
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getDatabase:()Lorg/h2/engine/Database;
         8: .line 386
            iconst_0
         9: .line 387
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getName:()Ljava/lang/String;
            iload 1 /* count */
            ldc 2147483647
        10: .line 385
            invokevirtual org.h2.engine.Database.setProgress:(ILjava/lang/String;II)V
        end local 4 // org.h2.index.PageBtree page
        end local 3 // int child
        11: .line 381
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 2 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            if_icmplt 4
        end local 2 // int i
        13: .line 389
            aload 0 /* this */
            iload 1 /* count */
            putfield org.h2.index.PageBtreeNode.rowCount:I
        end local 1 // int count
        14: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rowCount:I
            ireturn
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lorg/h2/index/PageBtreeNode;
            2   14     1  count  I
            3   13     2      i  I
            5   11     3  child  I
            6   11     4   page  Lorg/h2/index/PageBtree;

  void setRowCountStored(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // int rowCount
         0: .line 396
            iload 1 /* rowCount */
            ifge 2
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.pageStoreInternalCount:Z
            ifeq 2
         1: .line 397
            return
         2: .line 399
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* rowCount */
            putfield org.h2.index.PageBtreeNode.rowCount:I
         3: .line 400
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rowCountStored:I
            iload 1 /* rowCount */
            if_icmpeq 10
         4: .line 401
            aload 0 /* this */
            iload 1 /* rowCount */
            putfield org.h2.index.PageBtreeNode.rowCountStored:I
         5: .line 402
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         6: .line 403
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.written:Z
            ifeq 9
         7: .line 404
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getChangeCount:()J
            putfield org.h2.index.PageBtreeNode.changeCount:J
         8: .line 405
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.writeHead:()V
         9: .line 407
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        10: .line 409
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int rowCount
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/h2/index/PageBtreeNode;
            0   11     1  rowCount  I
    MethodParameters:
          Name  Flags
      rowCount  

  private void check();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 412
            getstatic org.h2.engine.SysProperties.CHECK:Z
            ifeq 8
         1: .line 413
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         2: goto 7
         3: .line 414
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 1 /* i */
            iaload
            istore 2 /* child */
        start local 2 // int child
         4: .line 415
            iload 2 /* child */
            ifne 6
         5: .line 416
            invokestatic org.h2.message.DbException.throwInternalError:()Ljava/lang/RuntimeException;
            pop
        end local 2 // int child
         6: .line 413
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            if_icmplt 3
        end local 1 // int i
         8: .line 420
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/h2/index/PageBtreeNode;
            2    8     1      i  I
            4    6     2  child  I

  public void write();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 424
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.check:()V
         1: .line 425
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.writeData:()V
         2: .line 426
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.getPos:()I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.writePage:(ILorg/h2/store/Data;)V
         3: .line 427
            return
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/index/PageBtreeNode;

  private void writeHead();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 430
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.Data.reset:()V
         1: .line 431
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            iconst_5
         2: .line 432
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.onlyPosition:Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: org.h2.index.PageBtreeNode
      StackMap stack: org.h2.store.Data int
         3: bipush 16
      StackMap locals: org.h2.index.PageBtreeNode
      StackMap stack: org.h2.store.Data int int
         4: ior
            i2b
         5: .line 431
            invokevirtual org.h2.store.Data.writeByte:(B)V
         6: .line 433
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            iconst_0
            invokevirtual org.h2.store.Data.writeShortInt:(I)V
         7: .line 434
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            invokevirtual org.h2.store.Data.writeInt:(I)V
         8: .line 435
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getId:()I
            invokevirtual org.h2.store.Data.writeVarInt:(I)V
         9: .line 436
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rowCountStored:I
            invokevirtual org.h2.store.Data.writeInt:(I)V
        10: .line 437
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            invokevirtual org.h2.store.Data.writeShortInt:(I)V
        11: .line 438
            return
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/h2/index/PageBtreeNode;

  private void writeData();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 441
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.written:Z
            ifeq 2
         1: .line 442
            return
         2: .line 444
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.readAllRows:()V
         3: .line 445
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.writeHead:()V
         4: .line 446
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iaload
            invokevirtual org.h2.store.Data.writeInt:(I)V
         5: .line 447
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         6: goto 10
         7: .line 448
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 1 /* i */
            iaload
            invokevirtual org.h2.store.Data.writeInt:(I)V
         8: .line 449
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            iload 1 /* i */
            iaload
            invokevirtual org.h2.store.Data.writeShortInt:(I)V
         9: .line 447
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmplt 7
        end local 1 // int i
        11: .line 451
            iconst_0
            istore 1 /* i */
        start local 1 // int i
        12: goto 15
        13: .line 452
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            iload 1 /* i */
            iaload
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
            iload 1 /* i */
            aaload
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.onlyPosition:Z
            invokevirtual org.h2.index.PageBtreeIndex.writeRow:(Lorg/h2/store/Data;ILorg/h2/result/SearchRow;Z)V
        14: .line 451
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmplt 13
        end local 1 // int i
        16: .line 454
            aload 0 /* this */
            iconst_1
            putfield org.h2.index.PageBtreeNode.written:Z
        17: .line 455
            return
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lorg/h2/index/PageBtreeNode;
            6   11     1     i  I
           12   16     1     i  I

  void freeRecursive();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.h2.index.PageBtreeNode this
         0: .line 459
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         1: .line 460
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.getPos:()I
            invokevirtual org.h2.store.PageStore.free:(I)V
         2: .line 461
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         3: goto 7
         4: .line 462
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 1 /* i */
            iaload
            istore 2 /* child */
        start local 2 // int child
         5: .line 463
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            iload 2 /* child */
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            invokevirtual org.h2.index.PageBtree.freeRecursive:()V
        end local 2 // int child
         6: .line 461
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            if_icmplt 4
        end local 1 // int i
         8: .line 465
            return
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/h2/index/PageBtreeNode;
            3    8     1      i  I
            5    6     2  child  I

  private void removeChild(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // int i
         0: .line 468
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.readAllRows:()V
         1: .line 469
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            isub
            putfield org.h2.index.PageBtreeNode.entryCount:I
         2: .line 470
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.pageStoreInternalCount:Z
            ifeq 4
         3: .line 471
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 1 /* i */
            iaload
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            invokevirtual org.h2.index.PageBtree.getRowCount:()I
            ineg
            invokevirtual org.h2.index.PageBtreeNode.updateRowCount:(I)V
         4: .line 473
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.PageBtreeNode.written:Z
         5: .line 474
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getChangeCount:()J
            putfield org.h2.index.PageBtreeNode.changeCount:J
         6: .line 475
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            ifge 8
         7: .line 476
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            invokestatic org.h2.message.DbException.throwInternalError:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            pop
         8: .line 478
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iload 1 /* i */
            if_icmple 14
         9: .line 479
            iload 1 /* i */
            ifle 10
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            iload 1 /* i */
            iconst_1
            isub
            iaload
            goto 11
      StackMap locals:
      StackMap stack:
        10: aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getPageSize:()I
      StackMap locals:
      StackMap stack: int
        11: istore 2 /* startNext */
        start local 2 // int startNext
        12: .line 480
            iload 2 /* startNext */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            iload 1 /* i */
            iaload
            isub
            istore 3 /* rowLength */
        start local 3 // int rowLength
        13: .line 481
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            iload 3 /* rowLength */
            invokestatic org.h2.index.PageBtreeNode.add:([IIII)V
        end local 3 // int rowLength
        end local 2 // int startNext
        14: .line 483
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            iload 1 /* i */
            invokestatic org.h2.index.PageBtreeNode.remove:([Ljava/lang/Object;II)[Ljava/lang/Object;
            checkcast org.h2.result.SearchRow[]
            putfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
        15: .line 484
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            iload 1 /* i */
            invokestatic org.h2.index.PageBtreeNode.remove:([III)[I
            putfield org.h2.index.PageBtreeNode.offsets:[I
        16: .line 485
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_2
            iadd
            iload 1 /* i */
            invokestatic org.h2.index.PageBtreeNode.remove:([III)[I
            putfield org.h2.index.PageBtreeNode.childPageIds:[I
        17: .line 486
            aload 0 /* this */
            dup
            getfield org.h2.index.PageBtreeNode.start:I
            bipush 6
            isub
            putfield org.h2.index.PageBtreeNode.start:I
        18: .line 487
            return
        end local 1 // int i
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   19     0       this  Lorg/h2/index/PageBtreeNode;
            0   19     1          i  I
           12   14     2  startNext  I
           13   14     3  rowLength  I
    MethodParameters:
      Name  Flags
      i     

  void nextPage(org.h2.index.PageBtreeCursor, int);
    descriptor: (Lorg/h2/index/PageBtreeCursor;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.index.PageBtreeCursor cursor
        start local 2 // int pageId
         0: .line 498
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 6
         2: .line 499
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 3 /* i */
            iaload
            iload 2 /* pageId */
            if_icmpne 5
         3: .line 500
            iinc 3 /* i */ 1
         4: .line 501
            goto 7
         5: .line 498
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            if_icmplt 2
         7: .line 504
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            if_icmple 14
         8: .line 505
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            ifne 11
         9: .line 506
            aload 1 /* cursor */
            aconst_null
            iconst_0
            invokevirtual org.h2.index.PageBtreeCursor.setCurrent:(Lorg/h2/index/PageBtreeLeaf;I)V
        10: .line 507
            return
        11: .line 509
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            checkcast org.h2.index.PageBtreeNode
            astore 4 /* next */
        start local 4 // org.h2.index.PageBtreeNode next
        12: .line 510
            aload 4 /* next */
            aload 1 /* cursor */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.getPos:()I
            invokevirtual org.h2.index.PageBtreeNode.nextPage:(Lorg/h2/index/PageBtreeCursor;I)V
        13: .line 511
            return
        end local 4 // org.h2.index.PageBtreeNode next
        14: .line 513
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 3 /* i */
            iaload
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            astore 4 /* page */
        start local 4 // org.h2.index.PageBtree page
        15: .line 514
            aload 4 /* page */
            invokevirtual org.h2.index.PageBtree.getFirstLeaf:()Lorg/h2/index/PageBtreeLeaf;
            astore 5 /* leaf */
        start local 5 // org.h2.index.PageBtreeLeaf leaf
        16: .line 515
            aload 1 /* cursor */
            aload 5 /* leaf */
            iconst_0
            invokevirtual org.h2.index.PageBtreeCursor.setCurrent:(Lorg/h2/index/PageBtreeLeaf;I)V
        17: .line 516
            return
        end local 5 // org.h2.index.PageBtreeLeaf leaf
        end local 4 // org.h2.index.PageBtree page
        end local 3 // int i
        end local 2 // int pageId
        end local 1 // org.h2.index.PageBtreeCursor cursor
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   18     0    this  Lorg/h2/index/PageBtreeNode;
            0   18     1  cursor  Lorg/h2/index/PageBtreeCursor;
            0   18     2  pageId  I
            1   18     3       i  I
           12   14     4    next  Lorg/h2/index/PageBtreeNode;
           15   18     4    page  Lorg/h2/index/PageBtree;
           16   18     5    leaf  Lorg/h2/index/PageBtreeLeaf;
    MethodParameters:
        Name  Flags
      cursor  
      pageId  

  void previousPage(org.h2.index.PageBtreeCursor, int);
    descriptor: (Lorg/h2/index/PageBtreeCursor;I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.index.PageBtreeCursor cursor
        start local 2 // int pageId
         0: .line 527
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            istore 3 /* i */
        start local 3 // int i
         1: goto 6
         2: .line 528
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 3 /* i */
            iaload
            iload 2 /* pageId */
            if_icmpne 5
         3: .line 529
            iinc 3 /* i */ -1
         4: .line 530
            goto 7
         5: .line 527
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            ifge 2
         7: .line 533
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            ifge 14
         8: .line 534
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            ifne 11
         9: .line 535
            aload 1 /* cursor */
            aconst_null
            iconst_0
            invokevirtual org.h2.index.PageBtreeCursor.setCurrent:(Lorg/h2/index/PageBtreeLeaf;I)V
        10: .line 536
            return
        11: .line 538
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            checkcast org.h2.index.PageBtreeNode
            astore 4 /* previous */
        start local 4 // org.h2.index.PageBtreeNode previous
        12: .line 539
            aload 4 /* previous */
            aload 1 /* cursor */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.getPos:()I
            invokevirtual org.h2.index.PageBtreeNode.previousPage:(Lorg/h2/index/PageBtreeCursor;I)V
        13: .line 540
            return
        end local 4 // org.h2.index.PageBtreeNode previous
        14: .line 542
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 3 /* i */
            iaload
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            astore 4 /* page */
        start local 4 // org.h2.index.PageBtree page
        15: .line 543
            aload 4 /* page */
            invokevirtual org.h2.index.PageBtree.getLastLeaf:()Lorg/h2/index/PageBtreeLeaf;
            astore 5 /* leaf */
        start local 5 // org.h2.index.PageBtreeLeaf leaf
        16: .line 544
            aload 1 /* cursor */
            aload 5 /* leaf */
            aload 5 /* leaf */
            getfield org.h2.index.PageBtreeLeaf.entryCount:I
            iconst_1
            isub
            invokevirtual org.h2.index.PageBtreeCursor.setCurrent:(Lorg/h2/index/PageBtreeLeaf;I)V
        17: .line 545
            return
        end local 5 // org.h2.index.PageBtreeLeaf leaf
        end local 4 // org.h2.index.PageBtree page
        end local 3 // int i
        end local 2 // int pageId
        end local 1 // org.h2.index.PageBtreeCursor cursor
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/h2/index/PageBtreeNode;
            0   18     1    cursor  Lorg/h2/index/PageBtreeCursor;
            0   18     2    pageId  I
            1   18     3         i  I
           12   14     4  previous  Lorg/h2/index/PageBtreeNode;
           15   18     4      page  Lorg/h2/index/PageBtree;
           16   18     5      leaf  Lorg/h2/index/PageBtreeLeaf;
    MethodParameters:
        Name  Flags
      cursor  
      pageId  

  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.index.PageBtreeNode this
         0: .line 550
            new java.lang.StringBuilder
            dup
            ldc "page["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.getPos:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "] b-tree node table:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         1: .line 551
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getId:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " entries:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         2: .line 550
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/index/PageBtreeNode;

  public void moveTo(org.h2.engine.Session, int);
    descriptor: (Lorg/h2/engine/Session;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // org.h2.engine.Session session
        start local 2 // int newPos
         0: .line 556
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            astore 3 /* store */
        start local 3 // org.h2.store.PageStore store
         1: .line 557
            aload 3 /* store */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         2: .line 558
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            iload 2 /* newPos */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            invokestatic org.h2.index.PageBtreeNode.create:(Lorg/h2/index/PageBtreeIndex;II)Lorg/h2/index/PageBtreeNode;
            astore 4 /* p2 */
        start local 4 // org.h2.index.PageBtreeNode p2
         3: .line 559
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.readAllRows:()V
         4: .line 560
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rowCountStored:I
            putfield org.h2.index.PageBtreeNode.rowCountStored:I
         5: .line 561
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rowCount:I
            putfield org.h2.index.PageBtreeNode.rowCount:I
         6: .line 562
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            putfield org.h2.index.PageBtreeNode.childPageIds:[I
         7: .line 563
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
            putfield org.h2.index.PageBtreeNode.rows:[Lorg/h2/result/SearchRow;
         8: .line 564
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            putfield org.h2.index.PageBtreeNode.entryCount:I
         9: .line 565
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.offsets:[I
            putfield org.h2.index.PageBtreeNode.offsets:[I
        10: .line 566
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.onlyPosition:Z
            putfield org.h2.index.PageBtreeNode.onlyPosition:Z
        11: .line 567
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            putfield org.h2.index.PageBtreeNode.parentPageId:I
        12: .line 568
            aload 4 /* p2 */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.start:I
            putfield org.h2.index.PageBtreeNode.start:I
        13: .line 569
            aload 3 /* store */
            aload 4 /* p2 */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        14: .line 570
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            ifne 17
        15: .line 571
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            aload 1 /* session */
            iload 2 /* newPos */
            invokevirtual org.h2.index.PageBtreeIndex.setRootPageId:(Lorg/h2/engine/Session;I)V
        16: .line 572
            goto 22
        17: .line 573
      StackMap locals: org.h2.store.PageStore org.h2.index.PageBtreeNode
      StackMap stack:
            aload 3 /* store */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.parentPageId:I
            invokevirtual org.h2.store.PageStore.getPage:(I)Lorg/h2/store/Page;
            astore 5 /* p */
        start local 5 // org.h2.store.Page p
        18: .line 574
            aload 5 /* p */
            instanceof org.h2.index.PageBtreeNode
            ifne 20
        19: .line 575
            invokestatic org.h2.message.DbException.throwInternalError:()Ljava/lang/RuntimeException;
            athrow
        20: .line 577
      StackMap locals: org.h2.store.Page
      StackMap stack:
            aload 5 /* p */
            checkcast org.h2.index.PageBtreeNode
            astore 6 /* n */
        start local 6 // org.h2.index.PageBtreeNode n
        21: .line 578
            aload 6 /* n */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.getPos:()I
            iload 2 /* newPos */
            invokevirtual org.h2.index.PageBtreeNode.moveChild:(II)V
        end local 6 // org.h2.index.PageBtreeNode n
        end local 5 // org.h2.store.Page p
        22: .line 580
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        23: goto 29
        24: .line 581
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 5 /* i */
            iaload
            istore 6 /* child */
        start local 6 // int child
        25: .line 582
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            iload 6 /* child */
            invokevirtual org.h2.index.PageBtreeIndex.getPage:(I)Lorg/h2/index/PageBtree;
            astore 7 /* p */
        start local 7 // org.h2.index.PageBtree p
        26: .line 583
            aload 7 /* p */
            iload 2 /* newPos */
            invokevirtual org.h2.index.PageBtree.setParentPageId:(I)V
        27: .line 584
            aload 3 /* store */
            aload 7 /* p */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
        end local 7 // org.h2.index.PageBtree p
        end local 6 // int child
        28: .line 580
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        29: iload 5 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            if_icmplt 24
        end local 5 // int i
        30: .line 586
            aload 3 /* store */
            aload 0 /* this */
            invokevirtual org.h2.index.PageBtreeNode.getPos:()I
            invokevirtual org.h2.store.PageStore.free:(I)V
        31: .line 587
            return
        end local 4 // org.h2.index.PageBtreeNode p2
        end local 3 // org.h2.store.PageStore store
        end local 2 // int newPos
        end local 1 // org.h2.engine.Session session
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   32     0     this  Lorg/h2/index/PageBtreeNode;
            0   32     1  session  Lorg/h2/engine/Session;
            0   32     2   newPos  I
            1   32     3    store  Lorg/h2/store/PageStore;
            3   32     4       p2  Lorg/h2/index/PageBtreeNode;
           18   22     5        p  Lorg/h2/store/Page;
           21   22     6        n  Lorg/h2/index/PageBtreeNode;
           23   30     5        i  I
           25   28     6    child  I
           26   28     7        p  Lorg/h2/index/PageBtree;
    MethodParameters:
         Name  Flags
      session  
      newPos   

  void moveChild(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.h2.index.PageBtreeNode this
        start local 1 // int oldPos
        start local 2 // int newPos
         0: .line 596
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 10
         2: .line 597
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 3 /* i */
            iaload
            iload 1 /* oldPos */
            if_icmpne 9
         3: .line 598
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.data:Lorg/h2/store/Data;
            invokevirtual org.h2.store.PageStore.logUndo:(Lorg/h2/store/Page;Lorg/h2/store/Data;)V
         4: .line 599
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.PageBtreeNode.written:Z
         5: .line 600
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getChangeCount:()J
            putfield org.h2.index.PageBtreeNode.changeCount:J
         6: .line 601
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.childPageIds:[I
            iload 3 /* i */
            iload 2 /* newPos */
            iastore
         7: .line 602
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.index:Lorg/h2/index/PageBtreeIndex;
            invokevirtual org.h2.index.PageBtreeIndex.getPageStore:()Lorg/h2/store/PageStore;
            aload 0 /* this */
            invokevirtual org.h2.store.PageStore.update:(Lorg/h2/store/Page;)V
         8: .line 603
            return
         9: .line 596
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.h2.index.PageBtreeNode.entryCount:I
            iconst_1
            iadd
            if_icmplt 2
        end local 3 // int i
        11: .line 606
            new java.lang.StringBuilder
            dup
            iload 1 /* oldPos */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* newPos */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.throwInternalError:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        end local 2 // int newPos
        end local 1 // int oldPos
        end local 0 // org.h2.index.PageBtreeNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/h2/index/PageBtreeNode;
            0   12     1  oldPos  I
            0   12     2  newPos  I
            1   11     3       i  I
    MethodParameters:
        Name  Flags
      oldPos  
      newPos  
}
SourceFile: "PageBtreeNode.java"