Skip to content

Commit df3cbe8

Browse files
committed
fix: links
1 parent cd0dfcc commit df3cbe8

File tree

2 files changed

+32
-33
lines changed
  • docs
    • cn/guides/40-load-data/04-transform
    • en/guides/40-load-data/04-transform

2 files changed

+32
-33
lines changed

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ FROM {@<stage_name>[/<path>] [<table_alias>] | '<uri>' [<table_alias>]}
2323

2424
用于 Stage 文件的 `SELECT` 语句支持各种参数来控制数据访问和解析。有关每个参数的详细信息和示例,请参阅它们各自的文档部分:
2525

26-
- **`FILE_FORMAT`**: 指定文件格式(例如,CSV、TSV、NDJSON、PARQUET、ORC、Avro 或自定义格式)。
27-
- **`PATTERN`**: 使用正则表达式来匹配和过滤文件名。
28-
- **`FILES`**: 显式列出要查询的特定文件名。
29-
- **`CASE_SENSITIVE`**: 控制 Parquet 文件中列名的大小写敏感性。
30-
- **`table_alias`**: 为 Stage 文件分配别名,以便在查询中更轻松地引用。
31-
- **`$col_position`**: 按位置索引(从 1 开始)选择列。
32-
- **`connection_parameters`**: 提供外部存储的连接详细信息。
33-
- **`uri`**: 指定远程文件的 URI。
26+
- **`FILE_FORMAT`**: 指定文件格式(例如,CSV、TSV、NDJSON、PARQUET、ORC、Avro 或自定义格式)。
27+
- **`PATTERN`**: 使用正则表达式来匹配和过滤文件名。
28+
- **`FILES`**: 显式列出要查询的特定文件名。
29+
- **`CASE_SENSITIVE`**: 控制 Parquet 文件中列名的大小写敏感性。
30+
- **`table_alias`**: 为 Stage 文件分配别名,以便在查询中更轻松地引用。
31+
- **`$col_position`**: 按位置索引(从 1 开始)选择列。
32+
- **`connection_parameters`**: 提供外部存储的连接详细信息。
33+
- **`uri`**: 指定远程文件的 URI。
3434

3535
## 支持的文件格式
3636

37-
| 文件格式 | 指南 |
38-
|-------------|---------------------------------------------------------------------------------------------------|
39-
| Parquet | [查询 Parquet 文件](/docs/en/guides/40-load-data/04-transform/00-querying-parquet.md) |
40-
| CSV | [查询 CSV 文件](/docs/en/guides/40-load-data/04-transform/01-querying-csv.md) |
41-
| TSV | [查询 TSV 文件](/docs/en/guides/40-load-data/04-transform/02-querying-tsv.md) |
42-
| NDJSON | [查询 NDJSON 文件](/docs/en/guides/40-load-data/04-transform/03-querying-ndjson.md) |
43-
| ORC | [查询 ORC 文件](/docs/en/guides/40-load-data/04-transform/03-querying-orc.md) |
44-
| Avro | [查询 Avro 文件](/docs/en/guides/40-load-data/04-transform/04-querying-avro.md) |
37+
| 文件格式 | 指南 |
38+
| -------- | --------------------------------------------- |
39+
| Parquet | [查询 Parquet 文件](./00-querying-parquet.md) |
40+
| CSV | [查询 CSV 文件](./01-querying-csv.md) |
41+
| TSV | [查询 TSV 文件](./02-querying-tsv.md) |
42+
| NDJSON | [查询 NDJSON 文件](./03-querying-ndjson.md) |
43+
| ORC | [查询 ORC 文件](./03-querying-orc.md) |
44+
| Avro | [查询 Avro 文件](./04-querying-avro.md) |

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

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,22 @@ FROM {@<stage_name>[/<path>] [<table_alias>] | '<uri>' [<table_alias>]}
2323

2424
The `SELECT` statement for staged files supports various parameters to control data access and parsing. For detailed information and examples on each parameter, please refer to their respective documentation sections:
2525

26-
- **`FILE_FORMAT`**: Specifies the format of the file (e.g., CSV, TSV, NDJSON, PARQUET, ORC, Avro, or custom formats).
27-
- **`PATTERN`**: Uses a regular expression to match and filter file names.
28-
- **`FILES`**: Explicitly lists specific file names to query.
29-
- **`CASE_SENSITIVE`**: Controls case sensitivity for column names in Parquet files.
30-
- **`table_alias`**: Assigns an alias to staged files for easier referencing in queries.
31-
- **`$col_position`**: Selects columns by their positional index (1-based).
32-
- **`connection_parameters`**: Provides connection details for external storage.
33-
- **`uri`**: Specifies the URI for remote files.
26+
- **`FILE_FORMAT`**: Specifies the format of the file (e.g., CSV, TSV, NDJSON, PARQUET, ORC, Avro, or custom formats).
27+
- **`PATTERN`**: Uses a regular expression to match and filter file names.
28+
- **`FILES`**: Explicitly lists specific file names to query.
29+
- **`CASE_SENSITIVE`**: Controls case sensitivity for column names in Parquet files.
30+
- **`table_alias`**: Assigns an alias to staged files for easier referencing in queries.
31+
- **`$col_position`**: Selects columns by their positional index (1-based).
32+
- **`connection_parameters`**: Provides connection details for external storage.
33+
- **`uri`**: Specifies the URI for remote files.
3434

3535
## Supported File Formats
3636

37-
38-
| File Format | Guide |
39-
|-------------|---------------------------------------------------------------------------------------------------|
40-
| Parquet | [Querying Parquet Files](/docs/en/guides/40-load-data/04-transform/00-querying-parquet.md) |
41-
| CSV | [Querying CSV Files](/docs/en/guides/40-load-data/04-transform/01-querying-csv.md) |
42-
| TSV | [Querying TSV Files](/docs/en/guides/40-load-data/04-transform/02-querying-tsv.md) |
43-
| NDJSON | [Querying NDJSON Files](/docs/en/guides/40-load-data/04-transform/03-querying-ndjson.md) |
44-
| ORC | [Querying ORC Files](/docs/en/guides/40-load-data/04-transform/03-querying-orc.md) |
45-
| Avro | [Querying Avro Files](/docs/en/guides/40-load-data/04-transform/04-querying-avro.md) |
37+
| File Format | Guide |
38+
| ----------- | -------------------------------------------------- |
39+
| Parquet | [Querying Parquet Files](./00-querying-parquet.md) |
40+
| CSV | [Querying CSV Files](./01-querying-csv.md) |
41+
| TSV | [Querying TSV Files](./02-querying-tsv.md) |
42+
| NDJSON | [Querying NDJSON Files](./03-querying-ndjson.md) |
43+
| ORC | [Querying ORC Files](./03-querying-orc.md) |
44+
| Avro | [Querying Avro Files](./04-querying-avro.md) |

0 commit comments

Comments
 (0)