public class org.postgresql.core.SqlCommand
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.postgresql.core.SqlCommand
  super_class: java.lang.Object
{
  public static final org.postgresql.core.SqlCommand BLANK;
    descriptor: Lorg/postgresql/core/SqlCommand;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final org.postgresql.core.SqlCommandType commandType;
    descriptor: Lorg/postgresql/core/SqlCommandType;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final int valuesBraceOpenPosition;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int valuesBraceClosePosition;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 20
            getstatic org.postgresql.core.SqlCommandType.BLANK:Lorg/postgresql/core/SqlCommandType;
            invokestatic org.postgresql.core.SqlCommand.createStatementTypeInfo:(Lorg/postgresql/core/SqlCommandType;)Lorg/postgresql/core/SqlCommand;
            putstatic org.postgresql.core.SqlCommand.BLANK:Lorg/postgresql/core/SqlCommand;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean isBatchedReWriteCompatible();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.postgresql.core.SqlCommand this
         0: .line 23
            aload 0 /* this */
            getfield org.postgresql.core.SqlCommand.valuesBraceOpenPosition:I
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.postgresql.core.SqlCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/postgresql/core/SqlCommand;

  public int getBatchRewriteValuesBraceOpenPosition();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.postgresql.core.SqlCommand this
         0: .line 27
            aload 0 /* this */
            getfield org.postgresql.core.SqlCommand.valuesBraceOpenPosition:I
            ireturn
        end local 0 // org.postgresql.core.SqlCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/postgresql/core/SqlCommand;

  public int getBatchRewriteValuesBraceClosePosition();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.postgresql.core.SqlCommand this
         0: .line 31
            aload 0 /* this */
            getfield org.postgresql.core.SqlCommand.valuesBraceClosePosition:I
            ireturn
        end local 0 // org.postgresql.core.SqlCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/postgresql/core/SqlCommand;

  public org.postgresql.core.SqlCommandType getType();
    descriptor: ()Lorg/postgresql/core/SqlCommandType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.postgresql.core.SqlCommand this
         0: .line 35
            aload 0 /* this */
            getfield org.postgresql.core.SqlCommand.commandType:Lorg/postgresql/core/SqlCommandType;
            areturn
        end local 0 // org.postgresql.core.SqlCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/postgresql/core/SqlCommand;

  public boolean isReturningKeywordPresent();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.postgresql.core.SqlCommand this
         0: .line 39
            aload 0 /* this */
            getfield org.postgresql.core.SqlCommand.parsedSQLhasRETURNINGKeyword:Z
            ireturn
        end local 0 // org.postgresql.core.SqlCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/postgresql/core/SqlCommand;

  public boolean returnsRows();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.postgresql.core.SqlCommand this
         0: .line 43
            aload 0 /* this */
            getfield org.postgresql.core.SqlCommand.parsedSQLhasRETURNINGKeyword:Z
            ifne 1
            aload 0 /* this */
            getfield org.postgresql.core.SqlCommand.commandType:Lorg/postgresql/core/SqlCommandType;
            getstatic org.postgresql.core.SqlCommandType.SELECT:Lorg/postgresql/core/SqlCommandType;
            if_acmpeq 1
            aload 0 /* this */
            getfield org.postgresql.core.SqlCommand.commandType:Lorg/postgresql/core/SqlCommandType;
            getstatic org.postgresql.core.SqlCommandType.WITH:Lorg/postgresql/core/SqlCommandType;
            if_acmpeq 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // org.postgresql.core.SqlCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/postgresql/core/SqlCommand;

  public static org.postgresql.core.SqlCommand createStatementTypeInfo(org.postgresql.core.SqlCommandType, boolean, int, int, boolean, int);
    descriptor: (Lorg/postgresql/core/SqlCommandType;ZIIZI)Lorg/postgresql/core/SqlCommand;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=8, locals=6, args_size=6
        start local 0 // org.postgresql.core.SqlCommandType type
        start local 1 // boolean isBatchedReWritePropertyConfigured
        start local 2 // int valuesBraceOpenPosition
        start local 3 // int valuesBraceClosePosition
        start local 4 // boolean isRETURNINGkeywordPresent
        start local 5 // int priorQueryCount
         0: .line 50
            new org.postgresql.core.SqlCommand
            dup
            aload 0 /* type */
            iload 1 /* isBatchedReWritePropertyConfigured */
         1: .line 51
            iload 2 /* valuesBraceOpenPosition */
            iload 3 /* valuesBraceClosePosition */
            iload 4 /* isRETURNINGkeywordPresent */
         2: .line 52
            iload 5 /* priorQueryCount */
         3: .line 50
            invokespecial org.postgresql.core.SqlCommand.<init>:(Lorg/postgresql/core/SqlCommandType;ZIIZI)V
            areturn
        end local 5 // int priorQueryCount
        end local 4 // boolean isRETURNINGkeywordPresent
        end local 3 // int valuesBraceClosePosition
        end local 2 // int valuesBraceOpenPosition
        end local 1 // boolean isBatchedReWritePropertyConfigured
        end local 0 // org.postgresql.core.SqlCommandType type
      LocalVariableTable:
        Start  End  Slot                                Name  Signature
            0    4     0                                type  Lorg/postgresql/core/SqlCommandType;
            0    4     1  isBatchedReWritePropertyConfigured  Z
            0    4     2             valuesBraceOpenPosition  I
            0    4     3            valuesBraceClosePosition  I
            0    4     4           isRETURNINGkeywordPresent  Z
            0    4     5                     priorQueryCount  I
    MethodParameters:
                                    Name  Flags
      type                                
      isBatchedReWritePropertyConfigured  
      valuesBraceOpenPosition             
      valuesBraceClosePosition            
      isRETURNINGkeywordPresent           
      priorQueryCount                     

  public static org.postgresql.core.SqlCommand createStatementTypeInfo(org.postgresql.core.SqlCommandType);
    descriptor: (Lorg/postgresql/core/SqlCommandType;)Lorg/postgresql/core/SqlCommand;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=8, locals=1, args_size=1
        start local 0 // org.postgresql.core.SqlCommandType type
         0: .line 56
            new org.postgresql.core.SqlCommand
            dup
            aload 0 /* type */
            iconst_0
            iconst_m1
            iconst_m1
            iconst_0
            iconst_0
            invokespecial org.postgresql.core.SqlCommand.<init>:(Lorg/postgresql/core/SqlCommandType;ZIIZI)V
            areturn
        end local 0 // org.postgresql.core.SqlCommandType type
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  type  Lorg/postgresql/core/SqlCommandType;
    MethodParameters:
      Name  Flags
      type  

  public static org.postgresql.core.SqlCommand createStatementTypeInfo(org.postgresql.core.SqlCommandType, boolean);
    descriptor: (Lorg/postgresql/core/SqlCommandType;Z)Lorg/postgresql/core/SqlCommand;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=8, locals=2, args_size=2
        start local 0 // org.postgresql.core.SqlCommandType type
        start local 1 // boolean isRETURNINGkeywordPresent
         0: .line 61
            new org.postgresql.core.SqlCommand
            dup
            aload 0 /* type */
            iconst_0
            iconst_m1
            iconst_m1
            iload 1 /* isRETURNINGkeywordPresent */
            iconst_0
            invokespecial org.postgresql.core.SqlCommand.<init>:(Lorg/postgresql/core/SqlCommandType;ZIIZI)V
            areturn
        end local 1 // boolean isRETURNINGkeywordPresent
        end local 0 // org.postgresql.core.SqlCommandType type
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0    1     0                       type  Lorg/postgresql/core/SqlCommandType;
            0    1     1  isRETURNINGkeywordPresent  Z
    MethodParameters:
                           Name  Flags
      type                       
      isRETURNINGkeywordPresent  

  private void <init>(org.postgresql.core.SqlCommandType, boolean, int, int, boolean, int);
    descriptor: (Lorg/postgresql/core/SqlCommandType;ZIIZI)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=8, args_size=7
        start local 0 // org.postgresql.core.SqlCommand this
        start local 1 // org.postgresql.core.SqlCommandType type
        start local 2 // boolean isBatchedReWriteConfigured
        start local 3 // int valuesBraceOpenPosition
        start local 4 // int valuesBraceClosePosition
        start local 5 // boolean isPresent
        start local 6 // int priorQueryCount
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 67
            aload 0 /* this */
            aload 1 /* type */
            putfield org.postgresql.core.SqlCommand.commandType:Lorg/postgresql/core/SqlCommandType;
         2: .line 68
            aload 0 /* this */
            iload 5 /* isPresent */
            putfield org.postgresql.core.SqlCommand.parsedSQLhasRETURNINGKeyword:Z
         3: .line 69
            aload 1 /* type */
            getstatic org.postgresql.core.SqlCommandType.INSERT:Lorg/postgresql/core/SqlCommandType;
            if_acmpne 7
            iload 2 /* isBatchedReWriteConfigured */
            ifeq 7
         4: .line 70
            iload 3 /* valuesBraceOpenPosition */
            iflt 7
            iload 4 /* valuesBraceClosePosition */
            iload 3 /* valuesBraceOpenPosition */
            if_icmple 7
         5: .line 71
            iload 5 /* isPresent */
            ifne 7
            iload 6 /* priorQueryCount */
            ifne 7
         6: .line 69
            iconst_1
            goto 8
      StackMap locals: org.postgresql.core.SqlCommand org.postgresql.core.SqlCommandType int int int int int
      StackMap stack:
         7: iconst_0
      StackMap locals:
      StackMap stack: int
         8: istore 7 /* batchedReWriteCompatible */
        start local 7 // boolean batchedReWriteCompatible
         9: .line 72
            aload 0 /* this */
            iload 7 /* batchedReWriteCompatible */
            ifeq 10
            iload 3 /* valuesBraceOpenPosition */
            goto 11
      StackMap locals: org.postgresql.core.SqlCommand org.postgresql.core.SqlCommandType int int int int int int
      StackMap stack: org.postgresql.core.SqlCommand
        10: iconst_m1
      StackMap locals: org.postgresql.core.SqlCommand org.postgresql.core.SqlCommandType int int int int int int
      StackMap stack: org.postgresql.core.SqlCommand int
        11: putfield org.postgresql.core.SqlCommand.valuesBraceOpenPosition:I
        12: .line 73
            aload 0 /* this */
            iload 7 /* batchedReWriteCompatible */
            ifeq 13
            iload 4 /* valuesBraceClosePosition */
            goto 14
      StackMap locals:
      StackMap stack: org.postgresql.core.SqlCommand
        13: iconst_m1
      StackMap locals: org.postgresql.core.SqlCommand org.postgresql.core.SqlCommandType int int int int int int
      StackMap stack: org.postgresql.core.SqlCommand int
        14: putfield org.postgresql.core.SqlCommand.valuesBraceClosePosition:I
        15: .line 74
            return
        end local 7 // boolean batchedReWriteCompatible
        end local 6 // int priorQueryCount
        end local 5 // boolean isPresent
        end local 4 // int valuesBraceClosePosition
        end local 3 // int valuesBraceOpenPosition
        end local 2 // boolean isBatchedReWriteConfigured
        end local 1 // org.postgresql.core.SqlCommandType type
        end local 0 // org.postgresql.core.SqlCommand this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0   16     0                        this  Lorg/postgresql/core/SqlCommand;
            0   16     1                        type  Lorg/postgresql/core/SqlCommandType;
            0   16     2  isBatchedReWriteConfigured  Z
            0   16     3     valuesBraceOpenPosition  I
            0   16     4    valuesBraceClosePosition  I
            0   16     5                   isPresent  Z
            0   16     6             priorQueryCount  I
            9   16     7    batchedReWriteCompatible  Z
    MethodParameters:
                            Name  Flags
      type                        
      isBatchedReWriteConfigured  
      valuesBraceOpenPosition     
      valuesBraceClosePosition    
      isPresent                   
      priorQueryCount             
}
SourceFile: "SqlCommand.java"