statement ok
pragma enable_verification;

# We can read with auto just fine
statement ok
select * from read_csv_auto('test/sql/copy/csv/data/people.csv');

# Specifying columns, but not specifying the right amount throws an error
statement error
select * from read_csv_auto('test/sql/copy/csv/data/people.csv', columns={'a': 'VARCHAR'})

# When we do specify the right amount of columns, everything works
statement ok
select * from read_csv_auto('test/sql/copy/csv/data/people.csv', columns={'a': 'VARCHAR', 'b': 'VARCHAR'})
