Skip to content

Commit

Permalink
add integrtion test
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesCheung96 committed Nov 21, 2023
1 parent f29d955 commit dc9bd9d
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[sink]
protocol = "csv"
# Line terminator. Empty value means "\r\n" (CRLF) is line terminators. The default value is empty.
terminator = "\n"
# Directory date separator, Optional values are `none`, `year`, `month`, `date`. The default value is none.
date-separator = 'day'

[sink.csv]
# Delimiter between fields. Must be ASCII characters. The default value is ','.
delimiter = ','
# Quoting character. Empty value means no quoting. The default value is '"'.
quote = '"'
# Representation of null values in CSV files, the default value is '\N'
null = '\N'
# Include commit-ts in the row data. The default value is false.
include-commit-ts = true

0 comments on commit dc9bd9d

Please sign in to comment.