should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
# name: test/sql/copy/csv/pollock/test_field_delimiter.test
# description: Test field delimiter from Pollock
# group: [pollock]
statement ok
PRAGMA enable_verification
statement ok
FROM read_csv('data/csv/pollock/file_field_delimiter_0x20.csv', delim = ' ', escape = '"', quote='"', header = false, skip=1,
columns = {'Date':'VARCHAR','TIME':'VARCHAR','Qty':'VARCHAR','PRODUCTID':'VARCHAR','Price':'VARCHAR'
,'ProductType':'VARCHAR','ProductDescription':'VARCHAR','URL':'VARCHAR','Comments':'VARCHAR'}, auto_detect = false, strict_mode=FALSE, null_padding = true)

View File

@@ -0,0 +1,11 @@
# name: test/sql/copy/csv/pollock/test_quotation_char.test
# description: Test quotation from Pollock
# group: [pollock]
statement ok
PRAGMA enable_verification
statement ok
FROM read_csv('data/csv/pollock/file_quotation_char_0x27.csv', delim = ',', escape = '"', quote='''',
columns = {'Date':'VARCHAR','TIME':'VARCHAR','Qty':'VARCHAR','PRODUCTID':'VARCHAR','Price':'VARCHAR'
,'ProductType':'VARCHAR','ProductDescription':'VARCHAR','URL':'VARCHAR','Comments':'VARCHAR'}, auto_detect = false, strict_mode=FALSE, null_padding = true)