Skip to content

Commit 8f2bf37

Browse files
soyeric128Chasen-Zhang
authored andcommitted
updates
1 parent f103766 commit 8f2bf37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/en/guides/40-load-data/04-transform/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ SELECT MINTEMP FROM '@mystage/weather.parquet'(CASE_SENSITIVE=>false);
8787
SELECT mintemp FROM '@mystage/weather.parquet'(CASE_SENSITIVE=>false);
8888
```
8989

90-
When `CASE_SENSITIVE` is set to `true`, you must use the exact column name as it appears in the file, as shown below:
90+
When `CASE_SENSITIVE` is set to `true`, you must use the exact column name as it appears in the file:
9191

9292
```sql
9393
SELECT `MinTemp` FROM '@mystage/weather.parquet'(CASE_SENSITIVE=>true);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ copyOptions ::=
219219
| 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 |
220220
| 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 |
222-
| COLUMN_MATCH_MODE | (For Parquet files only) Determines if column name matching during COPY INTO is `case-sensitive` or `case-insensitive` (default). | Optional |
222+
| COLUMN_MATCH_MODE | (For Parquet only) Determines if column name matching during COPY INTO is `case-sensitive` or `case-insensitive` (default). | Optional |
223223

224224
:::tip
225225
When importing large volumes of data, such as logs, it is recommended to set both `PURGE` and `FORCE` to `true`. This ensures efficient data import without the need for interaction with the Meta server (updating the copied-files set). However, it is important to be aware that this may lead to duplicate data imports.

0 commit comments

Comments
 (0)