Commit 203b703
authored
Keep single quotes in InsertIntoWriter (#128)
InsertIntoWriter converts a single quote to a double quote because
single quotes are reserved for string literals and double quotes are
column name.
However, this conversion will break users characters when their data
have a single quote.
For example, current behavior changes `St. Patrick's day` to `St.
Patrick"s day` implicitly.
To eliminate this issue, this pull request aims to keep single quotes.1 parent 708e8c5 commit 203b703
1 file changed
+5
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
286 | 286 | | |
287 | 287 | | |
288 | 288 | | |
| 289 | + | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
289 | 293 | | |
290 | 294 | | |
291 | | - | |
| 295 | + | |
292 | 296 | | |
293 | 297 | | |
294 | 298 | | |
| |||
0 commit comments