Does Table API connector, CSV, has some option to ignore some columns in source file?
For instance read only first, second, nine... but not the others?
Or any other trick?
CREATE TABLE some_table (
some_id BIGINT,
...
) WITH (
'format' = 'csv',
...
)