Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: orc copy into options #1707

Merged
merged 1 commit into from
Mar 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs/en/sql-reference/00-sql-reference/50-file-format-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,6 @@ Determines the behavior when encountering missing fields during data loading. Re
| `ERROR` (Default) | Generates an error if a missing field is encountered. |
| `NULL` | Interprets missing fields as NULL values. An error will be generated for non-nullable fields. |
| `FIELD_DEFAULT` | Uses the default value of the field for missing fields. |
| `TYPE_DEFAULT` | Uses the default value of the field's data type for missing fields. |

### COMPRESSION

Expand All @@ -246,4 +245,11 @@ Determines the behavior when encountering missing fields during data loading. Re

## ORC Options

No options available for the ORC format yet.
### MISSING_FIELD_AS

Determines the behavior when encountering missing fields during data loading. Refer to the options in the table below for possible configurations.

| Available Values | Description |
|------------------|-----------------------------------------------------------------------------------------------|
| `ERROR` (Default)| Generates an error if a missing field is encountered. |
| `FIELD_DEFAULT` | Uses the default value of the field for missing fields. |
Loading