1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
# name: test/sql/copy/csv/7702.test
# description: Test for issue #7702
# group: [csv]
statement ok
PRAGMA enable_verification
query I
SELECT count(*) FROM read_csv_auto( ['{DATA_DIR}/csv/error/mismatch/half1.csv', '{DATA_DIR}/csv/error/mismatch/half2.csv'], ignore_errors=true, sample_size=1);
----
9102
query I
SELECT count(*) FROM read_csv_auto( ['{DATA_DIR}/csv/error/mismatch/half2.csv', '{DATA_DIR}/csv/error/mismatch/half1.csv'], ignore_errors=true, sample_size=1);
----
9102
|