From 2425f72f962992f133b991bea2a40692ad4337dd Mon Sep 17 00:00:00 2001 From: Abdul Salam <104752966+fivetran-abdulsalam@users.noreply.github.com> Date: Mon, 13 May 2024 09:55:10 +0530 Subject: [PATCH] fix(fivetran_sdk): Update guide to not consider backslash as escape char (#37) updated guide --- development-guide.md | 1 + 1 file changed, 1 insertion(+) diff --git a/development-guide.md b/development-guide.md index e71ed88..8dc2a1b 100644 --- a/development-guide.md +++ b/development-guide.md @@ -88,6 +88,7 @@ Batch files are compressed using [ZSTD](https://en.wikipedia.org/wiki/Zstd) - Currently we only support CSV file format - Each batch file is size limited to 100MB - Number of records in each batch file can vary depending on row size +- Fivetran create batch file using ```com.fasterxml.jackson.dataformat.csv.CsvSchema``` which by default doesn't consider backslash as escape character. If you are reading the batch file then make sure that you do not consider backslash as escape character. ### RPC Calls #### CreateTable