-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
Description
What happens?
Read a compressed CSV file or multiple CSV files with DuckDB will trigger assertion error.
copy (select unnest(range(1000))) to 'test-1.csv';
copy (select unnest(range(1000))) to 'test-2.csv';
select * from 'test-*.csv';
Error: INTERNAL Error: Assertion triggered in file "/Users/liuyiyuan/code/duckdb/src/parallel/executor.cpp" on line 600: progress[i] <= 100
D from './data/csv/who.csv.gz';
Error: INTERNAL Error: Assertion triggered in file "/Users/liuyiyuan/code/duckdb/src/parallel/executor.cpp" on line 600: progress[i] <= 100
To Reproduce
Compile DuckDB in debug mode and run the query.
OS:
macos
DuckDB Version:
DuckDB Client:
cli
Full Name:
Yiyuan Liu
Affiliation:
High-Flyer AI
Have you tried this on the latest main
branch?
I have tested with a main build
Have you tried the steps to reproduce? Do they include all relevant data and configuration? Does the issue you report still appear there?
- Yes, I have