Closed infdahai closed 1 year ago
duckdb sql just supports copy a from b.csv;
and the table a
is a table with determinate types in catalog stage. Because we don't know the types in csv file except for specifying the test csv format in bustub, such as (bigint, bigint, bigint).
so we can only use 'create table' and then 'copy from' to do this task.
issue: #404
status: (don't need to review, still be coding)
material impl ref: duckdb, risinglight, copy syntax specification: copy statement
expected behavior:
task: