github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/tests/integration_tests/storage_csv_update/conf/changefeed.toml (about)

     1  [sink]
     2  protocol = "csv"
     3  # Line terminator. Empty value means "\r\n" (CRLF) is line terminators. The default value is empty.
     4  terminator = "\n"
     5  # Directory date separator, Optional values are `none`, `year`, `month`, `date`. The default value is none.
     6  date-separator = 'day'
     7  
     8  [sink.csv]
     9  # Delimiter between fields. Must be ASCII characters. The default value is ','.
    10  delimiter = ','
    11  # Quoting character. Empty value means no quoting. The default value is '"'.
    12  quote = '"'
    13  # Representation of null values in CSV files, the default value is '\N'
    14  null = '\N'
    15  # Include commit-ts in the row data. The default value is false.
    16  include-commit-ts = true