public class org.h2.command.ddl.AlterSequence extends org.h2.command.ddl.SchemaCommand
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.command.ddl.AlterSequence
  super_class: org.h2.command.ddl.SchemaCommand
{
  private boolean ifExists;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private org.h2.table.Table table;
    descriptor: Lorg/h2/table/Table;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String sequenceName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.schema.Sequence sequence;
    descriptor: Lorg/h2/schema/Sequence;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.command.ddl.SequenceOptions options;
    descriptor: Lorg/h2/command/ddl/SequenceOptions;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.h2.engine.Session, org.h2.schema.Schema);
    descriptor: (Lorg/h2/engine/Session;Lorg/h2/schema/Schema;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.h2.command.ddl.AlterSequence this
        start local 1 // org.h2.engine.Session session
        start local 2 // org.h2.schema.Schema schema
         0: .line 34
            aload 0 /* this */
            aload 1 /* session */
            aload 2 /* schema */
            invokespecial org.h2.command.ddl.SchemaCommand.<init>:(Lorg/h2/engine/Session;Lorg/h2/schema/Schema;)V
         1: .line 35
            return
        end local 2 // org.h2.schema.Schema schema
        end local 1 // org.h2.engine.Session session
        end local 0 // org.h2.command.ddl.AlterSequence this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/h2/command/ddl/AlterSequence;
            0    2     1  session  Lorg/h2/engine/Session;
            0    2     2   schema  Lorg/h2/schema/Schema;
    MethodParameters:
         Name  Flags
      session  
      schema   

  public void setIfExists(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.command.ddl.AlterSequence this
        start local 1 // boolean b
         0: .line 38
            aload 0 /* this */
            iload 1 /* b */
            putfield org.h2.command.ddl.AlterSequence.ifExists:Z
         1: .line 39
            return
        end local 1 // boolean b
        end local 0 // org.h2.command.ddl.AlterSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/command/ddl/AlterSequence;
            0    2     1     b  Z
    MethodParameters:
      Name  Flags
      b     

  public void setSequenceName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.command.ddl.AlterSequence this
        start local 1 // java.lang.String sequenceName
         0: .line 42
            aload 0 /* this */
            aload 1 /* sequenceName */
            putfield org.h2.command.ddl.AlterSequence.sequenceName:Ljava/lang/String;
         1: .line 43
            return
        end local 1 // java.lang.String sequenceName
        end local 0 // org.h2.command.ddl.AlterSequence this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/h2/command/ddl/AlterSequence;
            0    2     1  sequenceName  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      sequenceName  

  public void setOptions(org.h2.command.ddl.SequenceOptions);
    descriptor: (Lorg/h2/command/ddl/SequenceOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.command.ddl.AlterSequence this
        start local 1 // org.h2.command.ddl.SequenceOptions options
         0: .line 46
            aload 0 /* this */
            aload 1 /* options */
            putfield org.h2.command.ddl.AlterSequence.options:Lorg/h2/command/ddl/SequenceOptions;
         1: .line 47
            return
        end local 1 // org.h2.command.ddl.SequenceOptions options
        end local 0 // org.h2.command.ddl.AlterSequence this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/h2/command/ddl/AlterSequence;
            0    2     1  options  Lorg/h2/command/ddl/SequenceOptions;
    MethodParameters:
         Name  Flags
      options  

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

  public void setColumn(org.h2.table.Column);
    descriptor: (Lorg/h2/table/Column;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.command.ddl.AlterSequence this
        start local 1 // org.h2.table.Column column
         0: .line 55
            aload 0 /* this */
            aload 1 /* column */
            invokevirtual org.h2.table.Column.getTable:()Lorg/h2/table/Table;
            putfield org.h2.command.ddl.AlterSequence.table:Lorg/h2/table/Table;
         1: .line 56
            aload 0 /* this */
            aload 1 /* column */
            invokevirtual org.h2.table.Column.getSequence:()Lorg/h2/schema/Sequence;
            putfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
         2: .line 57
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
            ifnonnull 4
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.ifExists:Z
            ifne 4
         3: .line 58
            ldc 90036
            aload 1 /* column */
            iconst_0
            invokevirtual org.h2.table.Column.getSQL:(Z)Ljava/lang/String;
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
         4: .line 60
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.h2.table.Column column
        end local 0 // org.h2.command.ddl.AlterSequence this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/h2/command/ddl/AlterSequence;
            0    5     1  column  Lorg/h2/table/Column;
    MethodParameters:
        Name  Flags
      column  

  public int update();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.h2.command.ddl.AlterSequence this
         0: .line 64
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
            ifnonnull 6
         1: .line 65
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.h2.command.ddl.AlterSequence.getSchema:()Lorg/h2/schema/Schema;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequenceName:Ljava/lang/String;
            invokevirtual org.h2.schema.Schema.findSequence:(Ljava/lang/String;)Lorg/h2/schema/Sequence;
            putfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
         2: .line 66
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
            ifnonnull 6
         3: .line 67
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.ifExists:Z
            ifne 5
         4: .line 68
            ldc 90036
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequenceName:Ljava/lang/String;
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
         5: .line 70
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         6: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.table:Lorg/h2/table/Table;
            ifnull 8
         7: .line 74
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.session:Lorg/h2/engine/Session;
            invokevirtual org.h2.engine.Session.getUser:()Lorg/h2/engine/User;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.table:Lorg/h2/table/Table;
            bipush 15
            invokevirtual org.h2.engine.User.checkRight:(Lorg/h2/table/Table;I)V
         8: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.options:Lorg/h2/command/ddl/SequenceOptions;
            invokevirtual org.h2.command.ddl.SequenceOptions.getCycle:()Ljava/lang/Boolean;
            astore 1 /* cycle */
        start local 1 // java.lang.Boolean cycle
         9: .line 77
            aload 1 /* cycle */
            ifnull 11
        10: .line 78
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
            aload 1 /* cycle */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokevirtual org.h2.schema.Sequence.setCycle:(Z)V
        11: .line 80
      StackMap locals: java.lang.Boolean
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.options:Lorg/h2/command/ddl/SequenceOptions;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.session:Lorg/h2/engine/Session;
            invokevirtual org.h2.command.ddl.SequenceOptions.getCacheSize:(Lorg/h2/engine/Session;)Ljava/lang/Long;
            astore 2 /* cache */
        start local 2 // java.lang.Long cache
        12: .line 81
            aload 2 /* cache */
            ifnull 14
        13: .line 82
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
            aload 2 /* cache */
            invokevirtual java.lang.Long.longValue:()J
            invokevirtual org.h2.schema.Sequence.setCacheSize:(J)V
        14: .line 84
      StackMap locals: java.lang.Long
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.options:Lorg/h2/command/ddl/SequenceOptions;
            invokevirtual org.h2.command.ddl.SequenceOptions.isRangeSet:()Z
            ifeq 18
        15: .line 85
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.options:Lorg/h2/command/ddl/SequenceOptions;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.session:Lorg/h2/engine/Session;
            invokevirtual org.h2.command.ddl.SequenceOptions.getStartValue:(Lorg/h2/engine/Session;)Ljava/lang/Long;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.options:Lorg/h2/command/ddl/SequenceOptions;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.session:Lorg/h2/engine/Session;
            invokevirtual org.h2.command.ddl.SequenceOptions.getMinValue:(Lorg/h2/schema/Sequence;Lorg/h2/engine/Session;)Ljava/lang/Long;
        16: .line 86
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.options:Lorg/h2/command/ddl/SequenceOptions;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.session:Lorg/h2/engine/Session;
            invokevirtual org.h2.command.ddl.SequenceOptions.getMaxValue:(Lorg/h2/schema/Sequence;Lorg/h2/engine/Session;)Ljava/lang/Long;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.options:Lorg/h2/command/ddl/SequenceOptions;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.session:Lorg/h2/engine/Session;
            invokevirtual org.h2.command.ddl.SequenceOptions.getIncrement:(Lorg/h2/engine/Session;)Ljava/lang/Long;
        17: .line 85
            invokevirtual org.h2.schema.Sequence.modify:(Ljava/lang/Long;Ljava/lang/Long;Ljava/lang/Long;Ljava/lang/Long;)V
        18: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.sequence:Lorg/h2/schema/Sequence;
            aload 0 /* this */
            getfield org.h2.command.ddl.AlterSequence.session:Lorg/h2/engine/Session;
            invokevirtual org.h2.schema.Sequence.flush:(Lorg/h2/engine/Session;)V
        19: .line 89
            iconst_0
            ireturn
        end local 2 // java.lang.Long cache
        end local 1 // java.lang.Boolean cycle
        end local 0 // org.h2.command.ddl.AlterSequence this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   20     0   this  Lorg/h2/command/ddl/AlterSequence;
            9   20     1  cycle  Ljava/lang/Boolean;
           12   20     2  cache  Ljava/lang/Long;

  public int getType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.command.ddl.AlterSequence this
         0: .line 94
            bipush 54
            ireturn
        end local 0 // org.h2.command.ddl.AlterSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/command/ddl/AlterSequence;
}
SourceFile: "AlterSequence.java"