summaryrefslogtreecommitdiffstats
path: root/test/shell5.test
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:07:40 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:07:40 +0000
commit9d2c15192c890a8876bcb9a2ef918756d03718b6 (patch)
tree8340f6a53cda0ba296d162c8c8d767086a337ff9 /test/shell5.test
parentAdding upstream version 3.46.0. (diff)
downloadsqlite3-9d2c15192c890a8876bcb9a2ef918756d03718b6.tar.xz
sqlite3-9d2c15192c890a8876bcb9a2ef918756d03718b6.zip
Adding upstream version 3.46.1.upstream/3.46.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--test/shell5.test12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/shell5.test b/test/shell5.test
index 877676d..8727eda 100644
--- a/test/shell5.test
+++ b/test/shell5.test
@@ -585,4 +585,16 @@ do_test shell5-7.1 {
SELECT * FROM t1;}
} {0 aaa|bbb|aaabbb}
+#-------------------------------------------------------------------------
+
+do_test shell5-8.1 {
+
+ set out [open shell5.csv w]
+ fconfigure $out -translation lf
+ puts $out x
+ close $out
+
+ catchcmd :memory: {.import --csv shell5.csv '""""""""""""""""""""""""""""""""""""""""""""""'}
+} {0 {}}
+
finish_test