You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently we support parquet file source, for example:
CREATE table parquet_table(
id int,
name string,
)
WITH (
connector = 's3_v2',
match_pattern = '*.parquet',
xxx,
) FORMAT PLAIN ENCODE PARQUET;
Since the parquet file itself has metadata that records its schema, perhaps we do not need to define the schema of the parquet source. We may pre-read the meta of a parquet file when create source. Open this issue for investigation.
The text was updated successfully, but these errors were encountered:
This issue has been open for 60 days with no activity.
If you think it is still relevant today, and needs to be done in the near future, you can comment to update the status, or just manually remove the no-issue-activity label.
You can also confidently close this issue as not planned to keep our backlog clean.
Don't worry if you think the issue is still valuable to continue in the future.
It's searchable and can be reopened when it's time. 😄
Recently we support parquet file source, for example:
Since the parquet file itself has metadata that records its schema, perhaps we do not need to define the schema of the parquet source. We may pre-read the meta of a parquet file when create source. Open this issue for investigation.
The text was updated successfully, but these errors were encountered: