public class org.h2.tools.Csv implements org.h2.tools.SimpleRowSource
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.tools.Csv
  super_class: java.lang.Object
{
  private java.lang.String[] columnNames;
    descriptor: [Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

  private char escapeCharacter;
    descriptor: C
    flags: (0x0002) ACC_PRIVATE

  private char fieldDelimiter;
    descriptor: C
    flags: (0x0002) ACC_PRIVATE

  private char fieldSeparatorRead;
    descriptor: C
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

  private char lineComment;
    descriptor: C
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private java.io.Reader input;
    descriptor: Ljava/io/Reader;
    flags: (0x0002) ACC_PRIVATE

  private char[] inputBuffer;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private java.io.Writer output;
    descriptor: Ljava/io/Writer;
    flags: (0x0002) ACC_PRIVATE

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 48
            aload 0 /* this */
            bipush 34
            putfield org.h2.tools.Csv.escapeCharacter:C
         2: .line 49
            aload 0 /* this */
            bipush 34
            putfield org.h2.tools.Csv.fieldDelimiter:C
         3: .line 50
            aload 0 /* this */
            bipush 44
            putfield org.h2.tools.Csv.fieldSeparatorRead:C
         4: .line 51
            aload 0 /* this */
            ldc ","
            putfield org.h2.tools.Csv.fieldSeparatorWrite:Ljava/lang/String;
         5: .line 54
            aload 0 /* this */
            iconst_1
            putfield org.h2.tools.Csv.writeColumnHeader:Z
         6: .line 56
            aload 0 /* this */
            getstatic org.h2.engine.SysProperties.LINE_SEPARATOR:Ljava/lang/String;
            putfield org.h2.tools.Csv.lineSeparator:Ljava/lang/String;
         7: .line 57
            aload 0 /* this */
            ldc ""
            putfield org.h2.tools.Csv.nullString:Ljava/lang/String;
         8: .line 63
            aload 0 /* this */
            iconst_m1
            putfield org.h2.tools.Csv.inputBufferStart:I
         9: .line 43
            return
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/h2/tools/Csv;

  private int writeResultSet(java.sql.ResultSet);
    descriptor: (Ljava/sql/ResultSet;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=11, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.sql.ResultSet rs
         0: .line 70
            iconst_0
            istore 2 /* rows */
        start local 2 // int rows
         1: .line 71
            aload 1 /* rs */
            invokeinterface java.sql.ResultSet.getMetaData:()Ljava/sql/ResultSetMetaData;
            astore 3 /* meta */
        start local 3 // java.sql.ResultSetMetaData meta
         2: .line 72
            aload 3 /* meta */
            invokeinterface java.sql.ResultSetMetaData.getColumnCount:()I
            istore 4 /* columnCount */
        start local 4 // int columnCount
         3: .line 73
            iload 4 /* columnCount */
            anewarray java.lang.String
            astore 5 /* row */
        start local 5 // java.lang.String[] row
         4: .line 74
            iload 4 /* columnCount */
            newarray 10
            astore 6 /* sqlTypes */
        start local 6 // int[] sqlTypes
         5: .line 75
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         6: goto 10
         7: .line 76
      StackMap locals: org.h2.tools.Csv java.sql.ResultSet int java.sql.ResultSetMetaData int java.lang.String[] int[] int
      StackMap stack:
            aload 5 /* row */
            iload 7 /* i */
            aload 3 /* meta */
            iload 7 /* i */
            iconst_1
            iadd
            invokeinterface java.sql.ResultSetMetaData.getColumnLabel:(I)Ljava/lang/String;
            aastore
         8: .line 77
            aload 6 /* sqlTypes */
            iload 7 /* i */
            aload 3 /* meta */
            iload 7 /* i */
            iconst_1
            iadd
            invokeinterface java.sql.ResultSetMetaData.getColumnType:(I)I
            iastore
         9: .line 75
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 7 /* i */
            iload 4 /* columnCount */
            if_icmplt 7
        end local 7 // int i
        11: .line 79
            aload 0 /* this */
            getfield org.h2.tools.Csv.writeColumnHeader:Z
            ifeq 31
        12: .line 80
            aload 0 /* this */
            aload 5 /* row */
            invokevirtual org.h2.tools.Csv.writeRow:([Ljava/lang/String;)V
        13: .line 82
            goto 31
        14: .line 83
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        15: goto 28
        16: .line 85
      StackMap locals: int
      StackMap stack:
            aload 6 /* sqlTypes */
            iload 7 /* i */
            iaload
            tableswitch { // 91 - 93
                   91: 17
                   92: 19
                   93: 21
              default: 23
          }
        17: .line 87
      StackMap locals:
      StackMap stack:
            aload 1 /* rs */
            iload 7 /* i */
            iconst_1
            iadd
            invokeinterface java.sql.ResultSet.getDate:(I)Ljava/sql/Date;
            astore 8 /* o */
        start local 8 // java.lang.Object o
        18: .line 88
            goto 24
        end local 8 // java.lang.Object o
        19: .line 90
      StackMap locals:
      StackMap stack:
            aload 1 /* rs */
            iload 7 /* i */
            iconst_1
            iadd
            invokeinterface java.sql.ResultSet.getTime:(I)Ljava/sql/Time;
            astore 8 /* o */
        start local 8 // java.lang.Object o
        20: .line 91
            goto 24
        end local 8 // java.lang.Object o
        21: .line 93
      StackMap locals:
      StackMap stack:
            aload 1 /* rs */
            iload 7 /* i */
            iconst_1
            iadd
            invokeinterface java.sql.ResultSet.getTimestamp:(I)Ljava/sql/Timestamp;
            astore 8 /* o */
        start local 8 // java.lang.Object o
        22: .line 94
            goto 24
        end local 8 // java.lang.Object o
        23: .line 96
      StackMap locals:
      StackMap stack:
            aload 1 /* rs */
            iload 7 /* i */
            iconst_1
            iadd
            invokeinterface java.sql.ResultSet.getString:(I)Ljava/lang/String;
            astore 8 /* o */
        start local 8 // java.lang.Object o
        24: .line 98
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 5 /* row */
            iload 7 /* i */
            aload 8 /* o */
            ifnonnull 25
            aconst_null
            goto 26
      StackMap locals: org.h2.tools.Csv java.sql.ResultSet int java.sql.ResultSetMetaData int java.lang.String[] int[] int java.lang.Object
      StackMap stack: java.lang.String[] int
        25: aload 8 /* o */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
      StackMap locals: org.h2.tools.Csv java.sql.ResultSet int java.sql.ResultSetMetaData int java.lang.String[] int[] int java.lang.Object
      StackMap stack: java.lang.String[] int java.lang.String
        26: aastore
        end local 8 // java.lang.Object o
        27: .line 83
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        28: iload 7 /* i */
            iload 4 /* columnCount */
            if_icmplt 16
        end local 7 // int i
        29: .line 100
            aload 0 /* this */
            aload 5 /* row */
            invokevirtual org.h2.tools.Csv.writeRow:([Ljava/lang/String;)V
        30: .line 101
            iinc 2 /* rows */ 1
        31: .line 82
      StackMap locals:
      StackMap stack:
            aload 1 /* rs */
            invokeinterface java.sql.ResultSet.next:()Z
            ifne 14
        32: .line 103
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            invokevirtual java.io.Writer.close:()V
        33: .line 104
            iload 2 /* rows */
            istore 10
        34: .line 108
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.close:()V
        35: .line 109
            aload 1 /* rs */
            invokestatic org.h2.util.JdbcUtils.closeSilently:(Ljava/sql/ResultSet;)V
        36: .line 104
            iload 10
            ireturn
        end local 6 // int[] sqlTypes
        end local 5 // java.lang.String[] row
        end local 4 // int columnCount
        end local 3 // java.sql.ResultSetMetaData meta
        end local 2 // int rows
        37: .line 105
      StackMap locals: org.h2.tools.Csv java.sql.ResultSet
      StackMap stack: java.io.IOException
            astore 2 /* e */
        start local 2 // java.io.IOException e
        38: .line 106
            aload 2 /* e */
            aconst_null
            invokestatic org.h2.message.DbException.convertIOException:(Ljava/io/IOException;Ljava/lang/String;)Lorg/h2/message/DbException;
            athrow
        end local 2 // java.io.IOException e
        39: .line 107
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 9
        40: .line 108
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.close:()V
        41: .line 109
            aload 1 /* rs */
            invokestatic org.h2.util.JdbcUtils.closeSilently:(Ljava/sql/ResultSet;)V
        42: .line 110
            aload 9
            athrow
        end local 1 // java.sql.ResultSet rs
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   43     0         this  Lorg/h2/tools/Csv;
            0   43     1           rs  Ljava/sql/ResultSet;
            1   37     2         rows  I
            2   37     3         meta  Ljava/sql/ResultSetMetaData;
            3   37     4  columnCount  I
            4   37     5          row  [Ljava/lang/String;
            5   37     6     sqlTypes  [I
            6   11     7            i  I
           15   29     7            i  I
           18   19     8            o  Ljava/lang/Object;
           20   21     8            o  Ljava/lang/Object;
           22   23     8            o  Ljava/lang/Object;
           24   27     8            o  Ljava/lang/Object;
           38   39     2            e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    34      37  Class java.io.IOException
           0    34      39  any
          37    39      39  any
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      rs    

  public int write(java.io.Writer, java.sql.ResultSet);
    descriptor: (Ljava/io/Writer;Ljava/sql/ResultSet;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.io.Writer writer
        start local 2 // java.sql.ResultSet rs
         0: .line 121
            aload 0 /* this */
            aload 1 /* writer */
            putfield org.h2.tools.Csv.output:Ljava/io/Writer;
         1: .line 122
            aload 0 /* this */
            aload 2 /* rs */
            invokevirtual org.h2.tools.Csv.writeResultSet:(Ljava/sql/ResultSet;)I
            ireturn
        end local 2 // java.sql.ResultSet rs
        end local 1 // java.io.Writer writer
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/h2/tools/Csv;
            0    2     1  writer  Ljava/io/Writer;
            0    2     2      rs  Ljava/sql/ResultSet;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
        Name  Flags
      writer  
      rs      

  public int write(java.lang.String, java.sql.ResultSet, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/sql/ResultSet;Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.lang.String outputFileName
        start local 2 // java.sql.ResultSet rs
        start local 3 // java.lang.String charset
         0: .line 143
            aload 0 /* this */
            aload 1 /* outputFileName */
            aload 3 /* charset */
            invokevirtual org.h2.tools.Csv.init:(Ljava/lang/String;Ljava/lang/String;)V
         1: .line 145
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.initWrite:()V
         2: .line 146
            aload 0 /* this */
            aload 2 /* rs */
            invokevirtual org.h2.tools.Csv.writeResultSet:(Ljava/sql/ResultSet;)I
         3: ireturn
         4: .line 147
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 4 /* e */
        start local 4 // java.io.IOException e
         5: .line 148
            new java.lang.StringBuilder
            dup
            ldc "IOException writing "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* outputFileName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 4 /* e */
            invokestatic org.h2.tools.Csv.convertException:(Ljava/lang/String;Ljava/lang/Exception;)Ljava/sql/SQLException;
            athrow
        end local 4 // java.io.IOException e
        end local 3 // java.lang.String charset
        end local 2 // java.sql.ResultSet rs
        end local 1 // java.lang.String outputFileName
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lorg/h2/tools/Csv;
            0    6     1  outputFileName  Ljava/lang/String;
            0    6     2              rs  Ljava/sql/ResultSet;
            0    6     3         charset  Ljava/lang/String;
            5    6     4               e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     3       4  Class java.io.IOException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                Name  Flags
      outputFileName  
      rs              
      charset         

  public int write(java.sql.Connection, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/sql/Connection;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=5
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.sql.Connection conn
        start local 2 // java.lang.String outputFileName
        start local 3 // java.lang.String sql
        start local 4 // java.lang.String charset
         0: .line 164
            aload 1 /* conn */
            invokeinterface java.sql.Connection.createStatement:()Ljava/sql/Statement;
            astore 5 /* stat */
        start local 5 // java.sql.Statement stat
         1: .line 165
            aload 5 /* stat */
            aload 3 /* sql */
            invokeinterface java.sql.Statement.executeQuery:(Ljava/lang/String;)Ljava/sql/ResultSet;
            astore 6 /* rs */
        start local 6 // java.sql.ResultSet rs
         2: .line 166
            aload 0 /* this */
            aload 2 /* outputFileName */
            aload 6 /* rs */
            aload 4 /* charset */
            invokevirtual org.h2.tools.Csv.write:(Ljava/lang/String;Ljava/sql/ResultSet;Ljava/lang/String;)I
            istore 7 /* rows */
        start local 7 // int rows
         3: .line 167
            aload 5 /* stat */
            invokeinterface java.sql.Statement.close:()V
         4: .line 168
            iload 7 /* rows */
            ireturn
        end local 7 // int rows
        end local 6 // java.sql.ResultSet rs
        end local 5 // java.sql.Statement stat
        end local 4 // java.lang.String charset
        end local 3 // java.lang.String sql
        end local 2 // java.lang.String outputFileName
        end local 1 // java.sql.Connection conn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lorg/h2/tools/Csv;
            0    5     1            conn  Ljava/sql/Connection;
            0    5     2  outputFileName  Ljava/lang/String;
            0    5     3             sql  Ljava/lang/String;
            0    5     4         charset  Ljava/lang/String;
            1    5     5            stat  Ljava/sql/Statement;
            2    5     6              rs  Ljava/sql/ResultSet;
            3    5     7            rows  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                Name  Flags
      conn            
      outputFileName  
      sql             
      charset         

  public java.sql.ResultSet read(java.lang.String, java.lang.String[], java.lang.String);
    descriptor: (Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.lang.String inputFileName
        start local 2 // java.lang.String[] colNames
        start local 3 // java.lang.String charset
         0: .line 190
            aload 0 /* this */
            aload 1 /* inputFileName */
            aload 3 /* charset */
            invokevirtual org.h2.tools.Csv.init:(Ljava/lang/String;Ljava/lang/String;)V
         1: .line 192
            aload 0 /* this */
            aload 2 /* colNames */
            invokevirtual org.h2.tools.Csv.readResultSet:([Ljava/lang/String;)Ljava/sql/ResultSet;
         2: areturn
         3: .line 193
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 4 /* e */
        start local 4 // java.io.IOException e
         4: .line 194
            new java.lang.StringBuilder
            dup
            ldc "IOException reading "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* inputFileName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 4 /* e */
            invokestatic org.h2.tools.Csv.convertException:(Ljava/lang/String;Ljava/lang/Exception;)Ljava/sql/SQLException;
            athrow
        end local 4 // java.io.IOException e
        end local 3 // java.lang.String charset
        end local 2 // java.lang.String[] colNames
        end local 1 // java.lang.String inputFileName
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/h2/tools/Csv;
            0    5     1  inputFileName  Ljava/lang/String;
            0    5     2       colNames  [Ljava/lang/String;
            0    5     3        charset  Ljava/lang/String;
            4    5     4              e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
               Name  Flags
      inputFileName  
      colNames       
      charset        

  public java.sql.ResultSet read(java.io.Reader, java.lang.String[]);
    descriptor: (Ljava/io/Reader;[Ljava/lang/String;)Ljava/sql/ResultSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.io.Reader reader
        start local 2 // java.lang.String[] colNames
         0: .line 209
            aload 0 /* this */
            aconst_null
            aconst_null
            invokevirtual org.h2.tools.Csv.init:(Ljava/lang/String;Ljava/lang/String;)V
         1: .line 210
            aload 0 /* this */
            aload 1 /* reader */
            putfield org.h2.tools.Csv.input:Ljava/io/Reader;
         2: .line 211
            aload 0 /* this */
            aload 2 /* colNames */
            invokevirtual org.h2.tools.Csv.readResultSet:([Ljava/lang/String;)Ljava/sql/ResultSet;
            areturn
        end local 2 // java.lang.String[] colNames
        end local 1 // java.io.Reader reader
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/h2/tools/Csv;
            0    3     1    reader  Ljava/io/Reader;
            0    3     2  colNames  [Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      reader    
      colNames  

  private java.sql.ResultSet readResultSet(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)Ljava/sql/ResultSet;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.lang.String[] colNames
         0: .line 215
            aload 0 /* this */
            aload 1 /* colNames */
            putfield org.h2.tools.Csv.columnNames:[Ljava/lang/String;
         1: .line 216
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.initRead:()V
         2: .line 217
            new org.h2.tools.SimpleResultSet
            dup
            aload 0 /* this */
            invokespecial org.h2.tools.SimpleResultSet.<init>:(Lorg/h2/tools/SimpleRowSource;)V
            astore 2 /* result */
        start local 2 // org.h2.tools.SimpleResultSet result
         3: .line 218
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.makeColumnNamesUnique:()V
         4: .line 219
            aload 0 /* this */
            getfield org.h2.tools.Csv.columnNames:[Ljava/lang/String;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 8
      StackMap locals: org.h2.tools.Csv java.lang.String[] org.h2.tools.SimpleResultSet top int int java.lang.String[]
      StackMap stack:
         5: aload 6
            iload 4
            aaload
            astore 3 /* columnName */
        start local 3 // java.lang.String columnName
         6: .line 220
            aload 2 /* result */
            aload 3 /* columnName */
            bipush 12
            ldc 2147483647
            iconst_0
            invokevirtual org.h2.tools.SimpleResultSet.addColumn:(Ljava/lang/String;III)V
        end local 3 // java.lang.String columnName
         7: .line 219
            iinc 4 1
      StackMap locals:
      StackMap stack:
         8: iload 4
            iload 5
            if_icmplt 5
         9: .line 222
            aload 2 /* result */
            areturn
        end local 2 // org.h2.tools.SimpleResultSet result
        end local 1 // java.lang.String[] colNames
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/h2/tools/Csv;
            0   10     1    colNames  [Ljava/lang/String;
            3   10     2      result  Lorg/h2/tools/SimpleResultSet;
            6    7     3  columnName  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      colNames  

  private void makeColumnNamesUnique();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 226
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 18
         2: .line 227
      StackMap locals: int
      StackMap stack:
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* buff */
        start local 2 // java.lang.StringBuilder buff
         3: .line 228
            aload 0 /* this */
            getfield org.h2.tools.Csv.columnNames:[Ljava/lang/String;
            iload 1 /* i */
            aaload
            astore 3 /* n */
        start local 3 // java.lang.String n
         4: .line 229
            aload 3 /* n */
            ifnull 5
            aload 3 /* n */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 7
         5: .line 230
      StackMap locals: java.lang.StringBuilder java.lang.String
      StackMap stack:
            aload 2 /* buff */
            bipush 67
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            iload 1 /* i */
            iconst_1
            iadd
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         6: .line 231
            goto 8
         7: .line 232
      StackMap locals:
      StackMap stack:
            aload 2 /* buff */
            aload 3 /* n */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 234
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* j */
        start local 4 // int j
         9: goto 15
        10: .line 235
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.tools.Csv.columnNames:[Ljava/lang/String;
            iload 4 /* j */
            aaload
            astore 5 /* y */
        start local 5 // java.lang.String y
        11: .line 236
            aload 2 /* buff */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 5 /* y */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 14
        12: .line 237
            aload 2 /* buff */
            bipush 49
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        13: .line 238
            iconst_m1
            istore 4 /* j */
        end local 5 // java.lang.String y
        14: .line 234
      StackMap locals:
      StackMap stack:
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
        15: iload 4 /* j */
            iload 1 /* i */
            if_icmplt 10
        end local 4 // int j
        16: .line 241
            aload 0 /* this */
            getfield org.h2.tools.Csv.columnNames:[Ljava/lang/String;
            iload 1 /* i */
            aload 2 /* buff */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
        end local 3 // java.lang.String n
        end local 2 // java.lang.StringBuilder buff
        17: .line 226
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 1 /* i */
            aload 0 /* this */
            getfield org.h2.tools.Csv.columnNames:[Ljava/lang/String;
            arraylength
            if_icmplt 2
        end local 1 // int i
        19: .line 243
            return
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lorg/h2/tools/Csv;
            1   19     1     i  I
            3   17     2  buff  Ljava/lang/StringBuilder;
            4   17     3     n  Ljava/lang/String;
            9   16     4     j  I
           11   14     5     y  Ljava/lang/String;

  private void init(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.lang.String newFileName
        start local 2 // java.lang.String charset
         0: .line 246
            aload 0 /* this */
            aload 1 /* newFileName */
            putfield org.h2.tools.Csv.fileName:Ljava/lang/String;
         1: .line 247
            aload 0 /* this */
            aload 2 /* charset */
            putfield org.h2.tools.Csv.characterSet:Ljava/lang/String;
         2: .line 248
            return
        end local 2 // java.lang.String charset
        end local 1 // java.lang.String newFileName
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/h2/tools/Csv;
            0    3     1  newFileName  Ljava/lang/String;
            0    3     2      charset  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      newFileName  
      charset      

  private void initWrite();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 251
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            ifnonnull 13
         1: .line 253
            aload 0 /* this */
            getfield org.h2.tools.Csv.fileName:Ljava/lang/String;
            iconst_0
            invokestatic org.h2.store.fs.FileUtils.newOutputStream:(Ljava/lang/String;Z)Ljava/io/OutputStream;
            astore 1 /* out */
        start local 1 // java.io.OutputStream out
         2: .line 254
            new java.io.BufferedOutputStream
            dup
            aload 1 /* out */
            sipush 4096
            invokespecial java.io.BufferedOutputStream.<init>:(Ljava/io/OutputStream;I)V
            astore 1 /* out */
         3: .line 255
            aload 0 /* this */
         4: new java.io.BufferedWriter
            dup
            aload 0 /* this */
            getfield org.h2.tools.Csv.characterSet:Ljava/lang/String;
            ifnull 6
         5: .line 256
            new java.io.OutputStreamWriter
            dup
            aload 1 /* out */
            aload 0 /* this */
            getfield org.h2.tools.Csv.characterSet:Ljava/lang/String;
            invokespecial java.io.OutputStreamWriter.<init>:(Ljava/io/OutputStream;Ljava/lang/String;)V
            goto 7
      StackMap locals: org.h2.tools.Csv java.io.OutputStream
      StackMap stack: org.h2.tools.Csv new 4 new 4
         6: new java.io.OutputStreamWriter
            dup
            aload 1 /* out */
            invokespecial java.io.OutputStreamWriter.<init>:(Ljava/io/OutputStream;)V
      StackMap locals: org.h2.tools.Csv java.io.OutputStream
      StackMap stack: org.h2.tools.Csv new 4 new 4 java.io.OutputStreamWriter
         7: invokespecial java.io.BufferedWriter.<init>:(Ljava/io/Writer;)V
         8: .line 255
            putfield org.h2.tools.Csv.output:Ljava/io/Writer;
        end local 1 // java.io.OutputStream out
         9: .line 257
            goto 13
      StackMap locals: org.h2.tools.Csv
      StackMap stack: java.lang.Exception
        10: astore 1 /* e */
        start local 1 // java.lang.Exception e
        11: .line 258
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.close:()V
        12: .line 259
            aload 1 /* e */
            invokestatic org.h2.message.DbException.convertToIOException:(Ljava/lang/Throwable;)Ljava/io/IOException;
            athrow
        end local 1 // java.lang.Exception e
        13: .line 262
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/h2/tools/Csv;
            2    9     1   out  Ljava/io/OutputStream;
           11   13     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     9      10  Class java.lang.Exception
    Exceptions:
      throws java.io.IOException

  private void writeRow(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.lang.String[] values
         0: .line 265
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 19
         2: .line 266
      StackMap locals: int
      StackMap stack:
            iload 2 /* i */
            ifle 5
         3: .line 267
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldSeparatorWrite:Ljava/lang/String;
            ifnull 5
         4: .line 268
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldSeparatorWrite:Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         5: .line 271
      StackMap locals:
      StackMap stack:
            aload 1 /* values */
            iload 2 /* i */
            aaload
            astore 3 /* s */
        start local 3 // java.lang.String s
         6: .line 272
            aload 3 /* s */
            ifnull 16
         7: .line 273
            aload 0 /* this */
            getfield org.h2.tools.Csv.escapeCharacter:C
            ifeq 14
         8: .line 274
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            ifeq 10
         9: .line 275
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            invokevirtual java.io.Writer.write:(I)V
        10: .line 277
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            aload 0 /* this */
            aload 3 /* s */
            invokevirtual org.h2.tools.Csv.escape:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        11: .line 278
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            ifeq 18
        12: .line 279
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            invokevirtual java.io.Writer.write:(I)V
        13: .line 281
            goto 18
        14: .line 282
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            aload 3 /* s */
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        15: .line 284
            goto 18
      StackMap locals:
      StackMap stack:
        16: aload 0 /* this */
            getfield org.h2.tools.Csv.nullString:Ljava/lang/String;
            ifnull 18
            aload 0 /* this */
            getfield org.h2.tools.Csv.nullString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ifle 18
        17: .line 285
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            aload 0 /* this */
            getfield org.h2.tools.Csv.nullString:Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        end local 3 // java.lang.String s
        18: .line 265
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 2 /* i */
            aload 1 /* values */
            arraylength
            if_icmplt 2
        end local 2 // int i
        20: .line 288
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            aload 0 /* this */
            getfield org.h2.tools.Csv.lineSeparator:Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
        21: .line 289
            return
        end local 1 // java.lang.String[] values
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    this  Lorg/h2/tools/Csv;
            0   22     1  values  [Ljava/lang/String;
            1   20     2       i  I
            6   18     3       s  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      values  

  private java.lang.String escape(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.lang.String data
         0: .line 292
            aload 1 /* data */
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            invokevirtual java.lang.String.indexOf:(I)I
            ifge 3
         1: .line 293
            aload 0 /* this */
            getfield org.h2.tools.Csv.escapeCharacter:C
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            if_icmpeq 2
            aload 1 /* data */
            aload 0 /* this */
            getfield org.h2.tools.Csv.escapeCharacter:C
            invokevirtual java.lang.String.indexOf:(I)I
            ifge 3
         2: .line 294
      StackMap locals:
      StackMap stack:
            aload 1 /* data */
            areturn
         3: .line 297
      StackMap locals:
      StackMap stack:
            aload 1 /* data */
            invokevirtual java.lang.String.length:()I
            istore 2 /* length */
        start local 2 // int length
         4: .line 298
            new java.lang.StringBuilder
            dup
            iload 2 /* length */
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 3 /* buff */
        start local 3 // java.lang.StringBuilder buff
         5: .line 299
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 12
         7: .line 300
      StackMap locals: int java.lang.StringBuilder int
      StackMap stack:
            aload 1 /* data */
            iload 4 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 5 /* ch */
        start local 5 // char ch
         8: .line 301
            iload 5 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            if_icmpeq 9
            iload 5 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.escapeCharacter:C
            if_icmpne 10
         9: .line 302
      StackMap locals: int
      StackMap stack:
            aload 3 /* buff */
            aload 0 /* this */
            getfield org.h2.tools.Csv.escapeCharacter:C
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        10: .line 304
      StackMap locals:
      StackMap stack:
            aload 3 /* buff */
            iload 5 /* ch */
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        end local 5 // char ch
        11: .line 299
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            iload 2 /* length */
            if_icmplt 7
        end local 4 // int i
        13: .line 306
            aload 3 /* buff */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 3 // java.lang.StringBuilder buff
        end local 2 // int length
        end local 1 // java.lang.String data
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/h2/tools/Csv;
            0   14     1    data  Ljava/lang/String;
            4   14     2  length  I
            5   14     3    buff  Ljava/lang/StringBuilder;
            6   13     4       i  I
            8   11     5      ch  C
    MethodParameters:
      Name  Flags
      data  

  private void initRead();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 310
            aload 0 /* this */
            getfield org.h2.tools.Csv.input:Ljava/io/Reader;
            ifnonnull 10
         1: .line 312
            aload 0 /* this */
            getfield org.h2.tools.Csv.fileName:Ljava/lang/String;
            invokestatic org.h2.store.fs.FileUtils.newInputStream:(Ljava/lang/String;)Ljava/io/InputStream;
            astore 1 /* in */
        start local 1 // java.io.InputStream in
         2: .line 313
            new java.io.BufferedInputStream
            dup
            aload 1 /* in */
            sipush 4096
            invokespecial java.io.BufferedInputStream.<init>:(Ljava/io/InputStream;I)V
            astore 1 /* in */
         3: .line 314
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.tools.Csv.characterSet:Ljava/lang/String;
            ifnull 4
            new java.io.InputStreamReader
            dup
            aload 1 /* in */
            aload 0 /* this */
            getfield org.h2.tools.Csv.characterSet:Ljava/lang/String;
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/lang/String;)V
            goto 5
      StackMap locals: org.h2.tools.Csv java.io.InputStream
      StackMap stack: org.h2.tools.Csv
         4: new java.io.InputStreamReader
            dup
            aload 1 /* in */
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;)V
      StackMap locals: org.h2.tools.Csv java.io.InputStream
      StackMap stack: org.h2.tools.Csv java.io.InputStreamReader
         5: putfield org.h2.tools.Csv.input:Ljava/io/Reader;
        end local 1 // java.io.InputStream in
         6: .line 315
            goto 10
      StackMap locals: org.h2.tools.Csv
      StackMap stack: java.io.IOException
         7: astore 1 /* e */
        start local 1 // java.io.IOException e
         8: .line 316
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.close:()V
         9: .line 317
            aload 1 /* e */
            athrow
        end local 1 // java.io.IOException e
        10: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.tools.Csv.input:Ljava/io/Reader;
            invokevirtual java.io.Reader.markSupported:()Z
            ifne 12
        11: .line 321
            aload 0 /* this */
            new java.io.BufferedReader
            dup
            aload 0 /* this */
            getfield org.h2.tools.Csv.input:Ljava/io/Reader;
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;)V
            putfield org.h2.tools.Csv.input:Ljava/io/Reader;
        12: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.tools.Csv.input:Ljava/io/Reader;
            iconst_1
            invokevirtual java.io.Reader.mark:(I)V
        13: .line 324
            aload 0 /* this */
            getfield org.h2.tools.Csv.input:Ljava/io/Reader;
            invokevirtual java.io.Reader.read:()I
            istore 1 /* bom */
        start local 1 // int bom
        14: .line 325
            iload 1 /* bom */
            ldc 65279
            if_icmpeq 16
        15: .line 328
            aload 0 /* this */
            getfield org.h2.tools.Csv.input:Ljava/io/Reader;
            invokevirtual java.io.Reader.reset:()V
        16: .line 330
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            sipush 8192
            newarray 5
            putfield org.h2.tools.Csv.inputBuffer:[C
        17: .line 331
            aload 0 /* this */
            getfield org.h2.tools.Csv.columnNames:[Ljava/lang/String;
            ifnonnull 19
        18: .line 332
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readHeader:()V
        19: .line 334
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int bom
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lorg/h2/tools/Csv;
            2    6     1    in  Ljava/io/InputStream;
            8   10     1     e  Ljava/io/IOException;
           14   20     1   bom  I
      Exception table:
        from    to  target  type
           1     6       7  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  private void readHeader();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 337
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* list */
        start local 1 // java.util.ArrayList list
         1: .line 339
      StackMap locals: java.util.ArrayList
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readValue:()Ljava/lang/String;
            astore 2 /* v */
        start local 2 // java.lang.String v
         2: .line 340
            aload 2 /* v */
            ifnonnull 9
         3: .line 341
            aload 0 /* this */
            getfield org.h2.tools.Csv.endOfLine:Z
            ifeq 6
         4: .line 342
            aload 0 /* this */
            getfield org.h2.tools.Csv.endOfFile:Z
            ifne 16
            aload 1 /* list */
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ifne 1
         5: .line 343
            goto 16
         6: .line 346
      StackMap locals: java.lang.String
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "COLUMN"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* list */
            invokevirtual java.util.ArrayList.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* v */
         7: .line 347
            aload 1 /* list */
            aload 2 /* v */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         8: .line 349
            goto 1
         9: .line 350
      StackMap locals:
      StackMap stack:
            aload 2 /* v */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 12
        10: .line 351
            new java.lang.StringBuilder
            dup
            ldc "COLUMN"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* list */
            invokevirtual java.util.ArrayList.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* v */
        11: .line 352
            goto 14
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield org.h2.tools.Csv.caseSensitiveColumnNames:Z
            ifne 14
            aload 2 /* v */
            invokestatic org.h2.tools.Csv.isSimpleColumnName:(Ljava/lang/String;)Z
            ifeq 14
        13: .line 353
            aload 2 /* v */
            invokestatic org.h2.util.StringUtils.toUpperEnglish:(Ljava/lang/String;)Ljava/lang/String;
            astore 2 /* v */
        14: .line 355
      StackMap locals:
      StackMap stack:
            aload 1 /* list */
            aload 2 /* v */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        15: .line 356
            aload 0 /* this */
            getfield org.h2.tools.Csv.endOfLine:Z
            ifeq 1
        end local 2 // java.lang.String v
        16: .line 361
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* list */
            iconst_0
            anewarray java.lang.String
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            putfield org.h2.tools.Csv.columnNames:[Ljava/lang/String;
        17: .line 362
            return
        end local 1 // java.util.ArrayList list
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lorg/h2/tools/Csv;
            1   18     1  list  Ljava/util/ArrayList<Ljava/lang/String;>;
            2   16     2     v  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException

  private static boolean isSimpleColumnName(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // java.lang.String columnName
         0: .line 365
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: aload 0 /* columnName */
            invokevirtual java.lang.String.length:()I
            istore 2 /* length */
        start local 2 // int length
         2: goto 10
         3: .line 366
      StackMap locals: int int
      StackMap stack:
            aload 0 /* columnName */
            iload 1 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 3 /* ch */
        start local 3 // char ch
         4: .line 367
            iload 1 /* i */
            ifne 7
         5: .line 368
            iload 3 /* ch */
            bipush 95
            if_icmpeq 9
            iload 3 /* ch */
            invokestatic java.lang.Character.isLetter:(C)Z
            ifne 9
         6: .line 369
            iconst_0
            ireturn
         7: .line 372
      StackMap locals: int
      StackMap stack:
            iload 3 /* ch */
            bipush 95
            if_icmpeq 9
            iload 3 /* ch */
            invokestatic java.lang.Character.isLetterOrDigit:(C)Z
            ifne 9
         8: .line 373
            iconst_0
            ireturn
        end local 3 // char ch
         9: .line 365
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 1 /* i */
            iload 2 /* length */
            if_icmplt 3
        end local 2 // int length
        end local 1 // int i
        11: .line 377
            aload 0 /* columnName */
            invokevirtual java.lang.String.length:()I
            ifeq 12
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        12: iconst_0
            ireturn
        end local 0 // java.lang.String columnName
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0  columnName  Ljava/lang/String;
            1   11     1           i  I
            2   11     2      length  I
            4    9     3          ch  C
    MethodParameters:
            Name  Flags
      columnName  

  private void pushBack();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 381
            aload 0 /* this */
            dup
            getfield org.h2.tools.Csv.inputBufferPos:I
            iconst_1
            isub
            putfield org.h2.tools.Csv.inputBufferPos:I
         1: .line 382
            return
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/tools/Csv;

  private int readChar();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 385
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferPos:I
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferEnd:I
            if_icmplt 2
         1: .line 386
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readBuffer:()I
            ireturn
         2: .line 388
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBuffer:[C
            aload 0 /* this */
            dup
            getfield org.h2.tools.Csv.inputBufferPos:I
            dup_x1
            iconst_1
            iadd
            putfield org.h2.tools.Csv.inputBufferPos:I
            caload
            ireturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/tools/Csv;
    Exceptions:
      throws java.io.IOException

  private int readBuffer();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 392
            aload 0 /* this */
            getfield org.h2.tools.Csv.endOfFile:Z
            ifeq 2
         1: .line 393
            iconst_m1
            ireturn
         2: .line 396
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferStart:I
            iflt 11
         3: .line 397
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferPos:I
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferStart:I
            isub
            istore 1 /* keep */
        start local 1 // int keep
         4: .line 398
            iload 1 /* keep */
            ifle 9
         5: .line 399
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBuffer:[C
            astore 2 /* src */
        start local 2 // char[] src
         6: .line 400
            iload 1 /* keep */
            sipush 4096
            iadd
            aload 2 /* src */
            arraylength
            if_icmple 8
         7: .line 401
            aload 0 /* this */
            aload 2 /* src */
            arraylength
            iconst_2
            imul
            newarray 5
            putfield org.h2.tools.Csv.inputBuffer:[C
         8: .line 403
      StackMap locals: int char[]
      StackMap stack:
            aload 2 /* src */
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferStart:I
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBuffer:[C
            iconst_0
            iload 1 /* keep */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 2 // char[] src
         9: .line 405
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.h2.tools.Csv.inputBufferStart:I
        10: .line 406
            goto 12
        end local 1 // int keep
        11: .line 407
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* keep */
        start local 1 // int keep
        12: .line 409
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* keep */
            putfield org.h2.tools.Csv.inputBufferPos:I
        13: .line 410
            aload 0 /* this */
            getfield org.h2.tools.Csv.input:Ljava/io/Reader;
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBuffer:[C
            iload 1 /* keep */
            sipush 4096
            invokevirtual java.io.Reader.read:([CII)I
            istore 2 /* len */
        start local 2 // int len
        14: .line 411
            iload 2 /* len */
            iconst_m1
            if_icmpne 19
        15: .line 414
            aload 0 /* this */
            sipush -1024
            putfield org.h2.tools.Csv.inputBufferEnd:I
        16: .line 415
            aload 0 /* this */
            iconst_1
            putfield org.h2.tools.Csv.endOfFile:Z
        17: .line 418
            aload 0 /* this */
            dup
            getfield org.h2.tools.Csv.inputBufferPos:I
            iconst_1
            iadd
            putfield org.h2.tools.Csv.inputBufferPos:I
        18: .line 419
            iconst_m1
            ireturn
        19: .line 421
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* keep */
            iload 2 /* len */
            iadd
            putfield org.h2.tools.Csv.inputBufferEnd:I
        20: .line 422
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBuffer:[C
            aload 0 /* this */
            dup
            getfield org.h2.tools.Csv.inputBufferPos:I
            dup_x1
            iconst_1
            iadd
            putfield org.h2.tools.Csv.inputBufferPos:I
            caload
            ireturn
        end local 2 // int len
        end local 1 // int keep
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lorg/h2/tools/Csv;
            4   11     1  keep  I
           12   21     1  keep  I
            6    9     2   src  [C
           14   21     2   len  I
    Exceptions:
      throws java.io.IOException

  private java.lang.String readValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 426
            aload 0 /* this */
            iconst_0
            putfield org.h2.tools.Csv.endOfLine:Z
         1: .line 427
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferPos:I
            putfield org.h2.tools.Csv.inputBufferStart:I
         2: .line 429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readChar:()I
            istore 1 /* ch */
        start local 1 // int ch
         3: .line 430
            iload 1 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            if_icmpne 40
         4: .line 432
            iconst_0
            istore 2 /* containsEscape */
        start local 2 // boolean containsEscape
         5: .line 433
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferPos:I
            putfield org.h2.tools.Csv.inputBufferStart:I
         6: .line 436
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readChar:()I
            istore 1 /* ch */
         7: .line 437
            iload 1 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            if_icmpne 14
         8: .line 438
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readChar:()I
            istore 1 /* ch */
         9: .line 439
            iload 1 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            if_icmpeq 12
        10: .line 440
            iconst_2
            istore 3 /* sep */
        start local 3 // int sep
        11: .line 441
            goto 23
        end local 3 // int sep
        12: .line 443
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 2 /* containsEscape */
        13: .line 444
            goto 6
      StackMap locals:
      StackMap stack:
        14: iload 1 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.escapeCharacter:C
            if_icmpne 21
        15: .line 445
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readChar:()I
            istore 1 /* ch */
        16: .line 446
            iload 1 /* ch */
            ifge 19
        17: .line 447
            iconst_1
            istore 3 /* sep */
        start local 3 // int sep
        18: .line 448
            goto 23
        end local 3 // int sep
        19: .line 450
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 2 /* containsEscape */
        20: .line 451
            goto 6
      StackMap locals:
      StackMap stack:
        21: iload 1 /* ch */
            ifge 6
        22: .line 452
            iconst_1
            istore 3 /* sep */
        start local 3 // int sep
        23: .line 456
      StackMap locals: int
      StackMap stack:
            new java.lang.String
            dup
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBuffer:[C
        24: .line 457
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferStart:I
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferPos:I
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferStart:I
            isub
            iload 3 /* sep */
            isub
        25: .line 456
            invokespecial java.lang.String.<init>:([CII)V
            astore 4 /* s */
        start local 4 // java.lang.String s
        26: .line 458
            iload 2 /* containsEscape */
            ifeq 28
        27: .line 459
            aload 0 /* this */
            aload 4 /* s */
            invokevirtual org.h2.tools.Csv.unEscape:(Ljava/lang/String;)Ljava/lang/String;
            astore 4 /* s */
        28: .line 461
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            putfield org.h2.tools.Csv.inputBufferStart:I
        29: .line 463
      StackMap locals:
      StackMap stack:
            iload 1 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldSeparatorRead:C
            if_icmpne 31
        30: .line 464
            goto 39
        31: .line 465
      StackMap locals:
      StackMap stack:
            iload 1 /* ch */
            bipush 10
            if_icmpeq 32
            iload 1 /* ch */
            iflt 32
            iload 1 /* ch */
            bipush 13
            if_icmpne 34
        32: .line 466
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.h2.tools.Csv.endOfLine:Z
        33: .line 467
            goto 39
        34: .line 468
      StackMap locals:
      StackMap stack:
            iload 1 /* ch */
            bipush 32
            if_icmpeq 37
            iload 1 /* ch */
            bipush 9
            if_icmpeq 37
        35: .line 471
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.pushBack:()V
        36: .line 472
            goto 39
        37: .line 474
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readChar:()I
            istore 1 /* ch */
        38: .line 462
            goto 29
        39: .line 476
      StackMap locals:
      StackMap stack:
            aload 4 /* s */
            areturn
        end local 4 // java.lang.String s
        end local 3 // int sep
        end local 2 // boolean containsEscape
        40: .line 477
      StackMap locals:
      StackMap stack:
            iload 1 /* ch */
            bipush 10
            if_icmpeq 41
            iload 1 /* ch */
            iflt 41
            iload 1 /* ch */
            bipush 13
            if_icmpne 43
        41: .line 478
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.h2.tools.Csv.endOfLine:Z
        42: .line 479
            aconst_null
            areturn
        43: .line 480
      StackMap locals:
      StackMap stack:
            iload 1 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldSeparatorRead:C
            if_icmpne 45
        44: .line 482
            aconst_null
            areturn
        45: .line 483
      StackMap locals:
      StackMap stack:
            iload 1 /* ch */
            bipush 32
            if_icmple 2
        46: .line 485
            aload 0 /* this */
            getfield org.h2.tools.Csv.lineComment:C
            ifeq 52
            iload 1 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.lineComment:C
            if_icmpne 52
        47: .line 487
            aload 0 /* this */
            iconst_m1
            putfield org.h2.tools.Csv.inputBufferStart:I
        48: .line 489
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readChar:()I
            istore 1 /* ch */
        49: .line 490
            iload 1 /* ch */
            bipush 10
            if_icmpeq 50
            iload 1 /* ch */
            iflt 50
            iload 1 /* ch */
            bipush 13
            if_icmpne 48
        50: .line 491
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.h2.tools.Csv.endOfLine:Z
        51: .line 492
            aconst_null
            areturn
        52: .line 496
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readChar:()I
            istore 1 /* ch */
        53: .line 497
            iload 1 /* ch */
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldSeparatorRead:C
            if_icmpne 55
        54: .line 498
            goto 57
        55: .line 499
      StackMap locals:
      StackMap stack:
            iload 1 /* ch */
            bipush 10
            if_icmpeq 56
            iload 1 /* ch */
            iflt 56
            iload 1 /* ch */
            bipush 13
            if_icmpne 52
        56: .line 500
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.h2.tools.Csv.endOfLine:Z
        57: .line 504
      StackMap locals:
      StackMap stack:
            new java.lang.String
            dup
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBuffer:[C
        58: .line 505
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferStart:I
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferPos:I
            aload 0 /* this */
            getfield org.h2.tools.Csv.inputBufferStart:I
            isub
            iconst_1
            isub
        59: .line 504
            invokespecial java.lang.String.<init>:([CII)V
            astore 2 /* s */
        start local 2 // java.lang.String s
        60: .line 506
            aload 0 /* this */
            getfield org.h2.tools.Csv.preserveWhitespace:Z
            ifne 62
        61: .line 507
            aload 2 /* s */
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            astore 2 /* s */
        62: .line 509
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            putfield org.h2.tools.Csv.inputBufferStart:I
        63: .line 511
            aload 0 /* this */
            aload 2 /* s */
            invokevirtual org.h2.tools.Csv.readNull:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 2 // java.lang.String s
        end local 1 // int ch
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   64     0            this  Lorg/h2/tools/Csv;
            3   64     1              ch  I
            5   40     2  containsEscape  Z
           11   12     3             sep  I
           18   19     3             sep  I
           23   40     3             sep  I
           26   40     4               s  Ljava/lang/String;
           60   64     2               s  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException

  private java.lang.String readNull(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.lang.String s
         0: .line 517
            aload 1 /* s */
            aload 0 /* this */
            getfield org.h2.tools.Csv.nullString:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* s */
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 1 // java.lang.String s
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/tools/Csv;
            0    3     1     s  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      s     

  private java.lang.String unEscape(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.lang.String s
         0: .line 521
            new java.lang.StringBuilder
            dup
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 2 /* buff */
        start local 2 // java.lang.StringBuilder buff
         1: .line 522
            iconst_0
            istore 3 /* start */
        start local 3 // int start
         2: .line 523
            aconst_null
            astore 4 /* chars */
        start local 4 // char[] chars
         3: .line 525
      StackMap locals: java.lang.StringBuilder int char[]
      StackMap stack:
            aload 1 /* s */
            aload 0 /* this */
            getfield org.h2.tools.Csv.escapeCharacter:C
            iload 3 /* start */
            invokevirtual java.lang.String.indexOf:(II)I
            istore 5 /* idx */
        start local 5 // int idx
         4: .line 526
            iload 5 /* idx */
            ifge 8
         5: .line 527
            aload 1 /* s */
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            iload 3 /* start */
            invokevirtual java.lang.String.indexOf:(II)I
            istore 5 /* idx */
         6: .line 528
            iload 5 /* idx */
            ifge 8
         7: .line 529
            goto 17
         8: .line 532
      StackMap locals: int
      StackMap stack:
            aload 4 /* chars */
            ifnonnull 10
         9: .line 533
            aload 1 /* s */
            invokevirtual java.lang.String.toCharArray:()[C
            astore 4 /* chars */
        10: .line 535
      StackMap locals:
      StackMap stack:
            aload 2 /* buff */
            aload 4 /* chars */
            iload 3 /* start */
            iload 5 /* idx */
            iload 3 /* start */
            isub
            invokevirtual java.lang.StringBuilder.append:([CII)Ljava/lang/StringBuilder;
            pop
        11: .line 536
            iload 5 /* idx */
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            if_icmpne 14
        12: .line 537
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            istore 3 /* start */
        13: .line 538
            goto 17
        14: .line 540
      StackMap locals:
      StackMap stack:
            aload 2 /* buff */
            aload 4 /* chars */
            iload 5 /* idx */
            iconst_1
            iadd
            caload
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        15: .line 541
            iload 5 /* idx */
            iconst_2
            iadd
            istore 3 /* start */
        end local 5 // int idx
        16: .line 524
            goto 3
        17: .line 543
      StackMap locals:
      StackMap stack:
            aload 2 /* buff */
            aload 1 /* s */
            iload 3 /* start */
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/CharSequence;II)Ljava/lang/StringBuilder;
            pop
        18: .line 544
            aload 2 /* buff */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 4 // char[] chars
        end local 3 // int start
        end local 2 // java.lang.StringBuilder buff
        end local 1 // java.lang.String s
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lorg/h2/tools/Csv;
            0   19     1      s  Ljava/lang/String;
            1   19     2   buff  Ljava/lang/StringBuilder;
            2   19     3  start  I
            3   19     4  chars  [C
            4   16     5    idx  I
    MethodParameters:
      Name  Flags
      s     

  public java.lang.Object[] readRow();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 552
            aload 0 /* this */
            getfield org.h2.tools.Csv.input:Ljava/io/Reader;
            ifnonnull 2
         1: .line 553
            aconst_null
            areturn
         2: .line 555
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.tools.Csv.columnNames:[Ljava/lang/String;
            arraylength
            anewarray java.lang.String
            astore 1 /* row */
        start local 1 // java.lang.String[] row
         3: .line 557
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         4: .line 559
      StackMap locals: java.lang.String[] int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.tools.Csv.readValue:()Ljava/lang/String;
            astore 3 /* v */
        start local 3 // java.lang.String v
         5: .line 560
            aload 3 /* v */
            ifnonnull 10
         6: .line 561
            aload 0 /* this */
            getfield org.h2.tools.Csv.endOfLine:Z
            ifeq 10
         7: .line 562
            iload 2 /* i */
            ifne 16
         8: .line 563
            aload 0 /* this */
            getfield org.h2.tools.Csv.endOfFile:Z
            ifeq 4
         9: .line 564
            aconst_null
            areturn
        10: .line 572
      StackMap locals: java.lang.String
      StackMap stack:
            iload 2 /* i */
            aload 1 /* row */
            arraylength
            if_icmpge 12
        11: .line 573
            aload 1 /* row */
            iload 2 /* i */
            iinc 2 /* i */ 1
            aload 3 /* v */
            aastore
        12: .line 575
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.tools.Csv.endOfLine:Z
            ifeq 4
        end local 3 // java.lang.String v
        end local 2 // int i
        13: .line 579
            goto 16
      StackMap locals: org.h2.tools.Csv java.lang.String[]
      StackMap stack: java.io.IOException
        14: astore 2 /* e */
        start local 2 // java.io.IOException e
        15: .line 580
            new java.lang.StringBuilder
            dup
            ldc "IOException reading from "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.h2.tools.Csv.fileName:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* e */
            invokestatic org.h2.tools.Csv.convertException:(Ljava/lang/String;Ljava/lang/Exception;)Ljava/sql/SQLException;
            athrow
        end local 2 // java.io.IOException e
        16: .line 582
      StackMap locals:
      StackMap stack:
            aload 1 /* row */
            areturn
        end local 1 // java.lang.String[] row
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lorg/h2/tools/Csv;
            3   17     1   row  [Ljava/lang/String;
            4   13     2     i  I
            5   13     3     v  Ljava/lang/String;
           15   16     2     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           3     9      14  Class java.io.IOException
          10    13      14  Class java.io.IOException
    Exceptions:
      throws java.sql.SQLException

  private static java.sql.SQLException convertException(java.lang.String, java.lang.Exception);
    descriptor: (Ljava/lang/String;Ljava/lang/Exception;)Ljava/sql/SQLException;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // java.lang.String message
        start local 1 // java.lang.Exception e
         0: .line 586
            ldc 90028
            aload 1 /* e */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            aload 0 /* message */
            aastore
            invokestatic org.h2.message.DbException.getJdbcSQLException:(ILjava/lang/Throwable;[Ljava/lang/String;)Ljava/sql/SQLException;
            areturn
        end local 1 // java.lang.Exception e
        end local 0 // java.lang.String message
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  message  Ljava/lang/String;
            0    1     1        e  Ljava/lang/Exception;
    MethodParameters:
         Name  Flags
      message  
      e        

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 594
            aload 0 /* this */
            getfield org.h2.tools.Csv.input:Ljava/io/Reader;
            invokestatic org.h2.util.IOUtils.closeSilently:(Ljava/lang/AutoCloseable;)V
         1: .line 595
            aload 0 /* this */
            aconst_null
            putfield org.h2.tools.Csv.input:Ljava/io/Reader;
         2: .line 596
            aload 0 /* this */
            getfield org.h2.tools.Csv.output:Ljava/io/Writer;
            invokestatic org.h2.util.IOUtils.closeSilently:(Ljava/lang/AutoCloseable;)V
         3: .line 597
            aload 0 /* this */
            aconst_null
            putfield org.h2.tools.Csv.output:Ljava/io/Writer;
         4: .line 598
            return
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/h2/tools/Csv;

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 605
            new java.sql.SQLException
            dup
            ldc "Method is not supported"
            ldc "CSV"
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            athrow
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;
    Exceptions:
      throws java.sql.SQLException

  public void setFieldSeparatorWrite(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.tools.Csv this
        start local 1 // java.lang.String fieldSeparatorWrite
         0: .line 614
            aload 0 /* this */
            aload 1 /* fieldSeparatorWrite */
            putfield org.h2.tools.Csv.fieldSeparatorWrite:Ljava/lang/String;
         1: .line 615
            return
        end local 1 // java.lang.String fieldSeparatorWrite
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lorg/h2/tools/Csv;
            0    2     1  fieldSeparatorWrite  Ljava/lang/String;
    MethodParameters:
                     Name  Flags
      fieldSeparatorWrite  

  public java.lang.String getFieldSeparatorWrite();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 623
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldSeparatorWrite:Ljava/lang/String;
            areturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public void setCaseSensitiveColumnNames(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // boolean caseSensitiveColumnNames
         0: .line 633
            aload 0 /* this */
            iload 1 /* caseSensitiveColumnNames */
            putfield org.h2.tools.Csv.caseSensitiveColumnNames:Z
         1: .line 634
            return
        end local 1 // boolean caseSensitiveColumnNames
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    2     0                      this  Lorg/h2/tools/Csv;
            0    2     1  caseSensitiveColumnNames  Z
    MethodParameters:
                          Name  Flags
      caseSensitiveColumnNames  

  public boolean getCaseSensitiveColumnNames();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 642
            aload 0 /* this */
            getfield org.h2.tools.Csv.caseSensitiveColumnNames:Z
            ireturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public void setFieldSeparatorRead(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // char fieldSeparatorRead
         0: .line 651
            aload 0 /* this */
            iload 1 /* fieldSeparatorRead */
            putfield org.h2.tools.Csv.fieldSeparatorRead:C
         1: .line 652
            return
        end local 1 // char fieldSeparatorRead
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/h2/tools/Csv;
            0    2     1  fieldSeparatorRead  C
    MethodParameters:
                    Name  Flags
      fieldSeparatorRead  

  public char getFieldSeparatorRead();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 660
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldSeparatorRead:C
            ireturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public void setLineCommentCharacter(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // char lineCommentCharacter
         0: .line 670
            aload 0 /* this */
            iload 1 /* lineCommentCharacter */
            putfield org.h2.tools.Csv.lineComment:C
         1: .line 671
            return
        end local 1 // char lineCommentCharacter
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lorg/h2/tools/Csv;
            0    2     1  lineCommentCharacter  C
    MethodParameters:
                      Name  Flags
      lineCommentCharacter  

  public char getLineCommentCharacter();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 679
            aload 0 /* this */
            getfield org.h2.tools.Csv.lineComment:C
            ireturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public void setFieldDelimiter(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // char fieldDelimiter
         0: .line 689
            aload 0 /* this */
            iload 1 /* fieldDelimiter */
            putfield org.h2.tools.Csv.fieldDelimiter:C
         1: .line 690
            return
        end local 1 // char fieldDelimiter
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/h2/tools/Csv;
            0    2     1  fieldDelimiter  C
    MethodParameters:
                Name  Flags
      fieldDelimiter  

  public char getFieldDelimiter();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 698
            aload 0 /* this */
            getfield org.h2.tools.Csv.fieldDelimiter:C
            ireturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public void setEscapeCharacter(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // char escapeCharacter
         0: .line 728
            aload 0 /* this */
            iload 1 /* escapeCharacter */
            putfield org.h2.tools.Csv.escapeCharacter:C
         1: .line 729
            return
        end local 1 // char escapeCharacter
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/h2/tools/Csv;
            0    2     1  escapeCharacter  C
    MethodParameters:
                 Name  Flags
      escapeCharacter  

  public char getEscapeCharacter();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 737
            aload 0 /* this */
            getfield org.h2.tools.Csv.escapeCharacter:C
            ireturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public void setLineSeparator(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.tools.Csv this
        start local 1 // java.lang.String lineSeparator
         0: .line 749
            aload 0 /* this */
            aload 1 /* lineSeparator */
            putfield org.h2.tools.Csv.lineSeparator:Ljava/lang/String;
         1: .line 750
            return
        end local 1 // java.lang.String lineSeparator
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/h2/tools/Csv;
            0    2     1  lineSeparator  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      lineSeparator  

  public java.lang.String getLineSeparator();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 758
            aload 0 /* this */
            getfield org.h2.tools.Csv.lineSeparator:Ljava/lang/String;
            areturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public void setNullString(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.tools.Csv this
        start local 1 // java.lang.String nullString
         0: .line 768
            aload 0 /* this */
            aload 1 /* nullString */
            putfield org.h2.tools.Csv.nullString:Ljava/lang/String;
         1: .line 769
            return
        end local 1 // java.lang.String nullString
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/h2/tools/Csv;
            0    2     1  nullString  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      nullString  

  public java.lang.String getNullString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 777
            aload 0 /* this */
            getfield org.h2.tools.Csv.nullString:Ljava/lang/String;
            areturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public void setPreserveWhitespace(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // boolean value
         0: .line 786
            aload 0 /* this */
            iload 1 /* value */
            putfield org.h2.tools.Csv.preserveWhitespace:Z
         1: .line 787
            return
        end local 1 // boolean value
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/h2/tools/Csv;
            0    2     1  value  Z
    MethodParameters:
       Name  Flags
      value  

  public boolean getPreserveWhitespace();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 795
            aload 0 /* this */
            getfield org.h2.tools.Csv.preserveWhitespace:Z
            ireturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public void setWriteColumnHeader(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // boolean value
         0: .line 804
            aload 0 /* this */
            iload 1 /* value */
            putfield org.h2.tools.Csv.writeColumnHeader:Z
         1: .line 805
            return
        end local 1 // boolean value
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/h2/tools/Csv;
            0    2     1  value  Z
    MethodParameters:
       Name  Flags
      value  

  public boolean getWriteColumnHeader();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.tools.Csv this
         0: .line 813
            aload 0 /* this */
            getfield org.h2.tools.Csv.writeColumnHeader:Z
            ireturn
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/tools/Csv;

  public java.lang.String setOptions(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=12, args_size=2
        start local 0 // org.h2.tools.Csv this
        start local 1 // java.lang.String options
         0: .line 824
            aconst_null
            astore 2 /* charset */
        start local 2 // java.lang.String charset
         1: .line 825
            aload 1 /* options */
            bipush 32
            iconst_0
            invokestatic org.h2.util.StringUtils.arraySplit:(Ljava/lang/String;CZ)[Ljava/lang/String;
            astore 3 /* keyValuePairs */
        start local 3 // java.lang.String[] keyValuePairs
         2: .line 826
            aload 3 /* keyValuePairs */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 45
      StackMap locals: org.h2.tools.Csv java.lang.String java.lang.String java.lang.String[] top int int java.lang.String[]
      StackMap stack:
         3: aload 7
            iload 5
            aaload
            astore 4 /* pair */
        start local 4 // java.lang.String pair
         4: .line 827
            aload 4 /* pair */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 6
         5: .line 828
            goto 44
         6: .line 830
      StackMap locals: org.h2.tools.Csv java.lang.String java.lang.String java.lang.String[] java.lang.String int int java.lang.String[]
      StackMap stack:
            aload 4 /* pair */
            bipush 61
            invokevirtual java.lang.String.indexOf:(I)I
            istore 8 /* index */
        start local 8 // int index
         7: .line 831
            aload 4 /* pair */
            iconst_0
            iload 8 /* index */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            iconst_1
            iconst_1
            ldc " "
            invokestatic org.h2.util.StringUtils.trim:(Ljava/lang/String;ZZLjava/lang/String;)Ljava/lang/String;
            astore 9 /* key */
        start local 9 // java.lang.String key
         8: .line 832
            aload 4 /* pair */
            iload 8 /* index */
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 10 /* value */
        start local 10 // java.lang.String value
         9: .line 833
            aload 10 /* value */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 10
            iconst_0
            goto 11
      StackMap locals: int java.lang.String java.lang.String
      StackMap stack:
        10: aload 10 /* value */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
      StackMap locals:
      StackMap stack: int
        11: istore 11 /* ch */
        start local 11 // char ch
        12: .line 834
            aload 9 /* key */
            iconst_3
            anewarray java.lang.String
            dup
            iconst_0
            ldc "escape"
            aastore
            dup
            iconst_1
            ldc "esc"
            aastore
            dup
            iconst_2
            ldc "escapeCharacter"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 15
        13: .line 835
            aload 0 /* this */
            iload 11 /* ch */
            invokevirtual org.h2.tools.Csv.setEscapeCharacter:(C)V
        14: .line 836
            goto 44
      StackMap locals: int
      StackMap stack:
        15: aload 9 /* key */
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            ldc "fieldDelimiter"
            aastore
            dup
            iconst_1
            ldc "fieldDelim"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 18
        16: .line 837
            aload 0 /* this */
            iload 11 /* ch */
            invokevirtual org.h2.tools.Csv.setFieldDelimiter:(C)V
        17: .line 838
            goto 44
      StackMap locals:
      StackMap stack:
        18: aload 9 /* key */
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            ldc "fieldSeparator"
            aastore
            dup
            iconst_1
            ldc "fieldSep"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 22
        19: .line 839
            aload 0 /* this */
            iload 11 /* ch */
            invokevirtual org.h2.tools.Csv.setFieldSeparatorRead:(C)V
        20: .line 840
            aload 0 /* this */
            aload 10 /* value */
            invokevirtual org.h2.tools.Csv.setFieldSeparatorWrite:(Ljava/lang/String;)V
        21: .line 841
            goto 44
      StackMap locals:
      StackMap stack:
        22: aload 9 /* key */
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            ldc "lineComment"
            aastore
            dup
            iconst_1
            ldc "lineCommentCharacter"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 25
        23: .line 842
            aload 0 /* this */
            iload 11 /* ch */
            invokevirtual org.h2.tools.Csv.setLineCommentCharacter:(C)V
        24: .line 843
            goto 44
      StackMap locals:
      StackMap stack:
        25: aload 9 /* key */
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            ldc "lineSeparator"
            aastore
            dup
            iconst_1
            ldc "lineSep"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 28
        26: .line 844
            aload 0 /* this */
            aload 10 /* value */
            invokevirtual org.h2.tools.Csv.setLineSeparator:(Ljava/lang/String;)V
        27: .line 845
            goto 44
      StackMap locals:
      StackMap stack:
        28: aload 9 /* key */
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            ldc "null"
            aastore
            dup
            iconst_1
            ldc "nullString"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 31
        29: .line 846
            aload 0 /* this */
            aload 10 /* value */
            invokevirtual org.h2.tools.Csv.setNullString:(Ljava/lang/String;)V
        30: .line 847
            goto 44
      StackMap locals:
      StackMap stack:
        31: aload 9 /* key */
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            ldc "charset"
            aastore
            dup
            iconst_1
            ldc "characterSet"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 34
        32: .line 848
            aload 10 /* value */
            astore 2 /* charset */
        33: .line 849
            goto 44
      StackMap locals:
      StackMap stack:
        34: aload 9 /* key */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "preserveWhitespace"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 37
        35: .line 850
            aload 0 /* this */
            aload 10 /* value */
            iconst_0
            iconst_0
            invokestatic org.h2.util.Utils.parseBoolean:(Ljava/lang/String;ZZ)Z
            invokevirtual org.h2.tools.Csv.setPreserveWhitespace:(Z)V
        36: .line 851
            goto 44
      StackMap locals:
      StackMap stack:
        37: aload 9 /* key */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "writeColumnHeader"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 40
        38: .line 852
            aload 0 /* this */
            aload 10 /* value */
            iconst_1
            iconst_0
            invokestatic org.h2.util.Utils.parseBoolean:(Ljava/lang/String;ZZ)Z
            invokevirtual org.h2.tools.Csv.setWriteColumnHeader:(Z)V
        39: .line 853
            goto 44
      StackMap locals:
      StackMap stack:
        40: aload 9 /* key */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "caseSensitiveColumnNames"
            aastore
            invokestatic org.h2.tools.Csv.isParam:(Ljava/lang/String;[Ljava/lang/String;)Z
            ifeq 43
        41: .line 854
            aload 0 /* this */
            aload 10 /* value */
            iconst_0
            iconst_0
            invokestatic org.h2.util.Utils.parseBoolean:(Ljava/lang/String;ZZ)Z
            invokevirtual org.h2.tools.Csv.setCaseSensitiveColumnNames:(Z)V
        42: .line 855
            goto 44
        43: .line 856
      StackMap locals:
      StackMap stack:
            aload 9 /* key */
            invokestatic org.h2.message.DbException.getUnsupportedException:(Ljava/lang/String;)Lorg/h2/message/DbException;
            athrow
        end local 11 // char ch
        end local 10 // java.lang.String value
        end local 9 // java.lang.String key
        end local 8 // int index
        end local 4 // java.lang.String pair
        44: .line 826
      StackMap locals: org.h2.tools.Csv java.lang.String java.lang.String java.lang.String[] top int int java.lang.String[]
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        45: iload 5
            iload 6
            if_icmplt 3
        46: .line 859
            aload 2 /* charset */
            areturn
        end local 3 // java.lang.String[] keyValuePairs
        end local 2 // java.lang.String charset
        end local 1 // java.lang.String options
        end local 0 // org.h2.tools.Csv this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   47     0           this  Lorg/h2/tools/Csv;
            0   47     1        options  Ljava/lang/String;
            1   47     2        charset  Ljava/lang/String;
            2   47     3  keyValuePairs  [Ljava/lang/String;
            4   44     4           pair  Ljava/lang/String;
            7   44     8          index  I
            8   44     9            key  Ljava/lang/String;
            9   44    10          value  Ljava/lang/String;
           12   44    11             ch  C
    MethodParameters:
         Name  Flags
      options  

  private static boolean isParam(java.lang.String, java.lang.String[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/String;)Z
    flags: (0x008a) ACC_PRIVATE, ACC_STATIC, ACC_VARARGS
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // java.lang.String key
        start local 1 // java.lang.String[] values
         0: .line 863
            aload 1 /* values */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: java.lang.String java.lang.String[] top int int java.lang.String[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* v */
        start local 2 // java.lang.String v
         2: .line 864
            aload 0 /* key */
            aload 2 /* v */
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 4
         3: .line 865
            iconst_1
            ireturn
        end local 2 // java.lang.String v
         4: .line 863
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 1
         6: .line 868
            iconst_0
            ireturn
        end local 1 // java.lang.String[] values
        end local 0 // java.lang.String key
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0     key  Ljava/lang/String;
            0    7     1  values  [Ljava/lang/String;
            2    4     2       v  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      key     
      values  
}
SourceFile: "Csv.java"