github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/pkg/cmd/util/changefeed_storage_sink.toml (about) 1 [sink] 2 transaction-atomicity = "" 3 # Line terminator. Empty value means "\r\n" (CRLF) is line terminators. The default value is empty. 4 terminator = "\r\n" 5 # Directory date separator, Optional values are `none`, `year`, `month`, `date`. The default value is none. 6 date-separator = 'day' 7 8 9 [sink.csv] 10 # Delimiter between fields. Must be ASCII characters. The default value is ','. 11 delimiter = ',' 12 # Quoting character. Empty value means no quoting. The default value is '"'. 13 quote = '"' 14 # Representation of null values in CSV files, the default value is '\N' 15 null = '\N' 16 # Include commit-ts in the row data. The default value is false. 17 include-commit-ts = false 18 # Ouptut Old Value, for example update statement will be replaced by a pair of delete and insert 19 # in the CSV files to output the old value. 20 output-old-value = false