Skip to content

Commit 8525dc1

Browse files
soyeric128Chasen-Zhang
authored andcommitted
Update dml-copy-into-table.md
1 parent 1b9db37 commit 8525dc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/en/sql-reference/10-sql-commands/10-dml/dml-copy-into-table.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ copyOptions ::=
216216
| PURGE | If `true`, the command will purge the files in the stage after they are loaded successfully into the table. Default: `false`. | Optional |
217217
| FORCE | COPY INTO ensures idempotence by automatically tracking and preventing the reloading of files for a default period of 12 hours. This can be customized using the `load_file_metadata_expire_hours` setting to control the expiration time for file metadata.<br/>This parameter defaults to `false` meaning COPY INTO will skip duplicate files when copying data. If `true`, duplicate files will not be skipped. | Optional |
218218
| DISABLE_VARIANT_CHECK | If `true`, invalid JSON data is replaced with null values during COPY INTO. If `false` (default), COPY INTO fails on invalid JSON data. | Optional |
219-
| ON_ERROR | Decides how to handle a file that contains errors: 'continue' to skip and proceed, 'abort' to terminate on error, 'abort_N' to terminate when errors ≥ N. Default is 'abort'. Note: 'abort_N' not available for Parquet files. | Optional |
220-
| MAX_FILES | Sets the maximum number of files to load that have not been loaded already. The value can be set up to 15000; any value greater than 15000 will be treated as 15000. | Optional |
219+
| ON_ERROR | Decides how to handle a file that contains errors: `continue` to skip and proceed, `abort` (default) to terminate on error, `abort_N` to terminate when errors ≥ N. Note: `abort_N` not available for Parquet files. | Optional |
220+
| MAX_FILES | Sets the maximum number of files to load that have not been loaded already. The value can be set up to 15,000; any value greater than 15,000 will be treated as 15,000. | Optional |
221221
| RETURN_FAILED_ONLY | When set to `true`, only files that failed to load will be returned in the output. Default: `false`. | Optional |
222222
| COLUMN_MATCH_MODE | (For Parquet files only) Determines if column name matching during COPY INTO is `case-sensitive` or `case-insensitive` (default). | Optional |
223223

0 commit comments

Comments
 (0)