After this PR #9272, the `docs/build_help_zip.sh` will run failed. This PR fix this issue. But the help module still has some parse problem, I will fix it in next PR. This CL mainly changes: 1. fix `docs/build_help_zip.sh` error 2. remove `sql-reference-v2` to `sql-reference` 3. modify build extension github action to run `docs/build_help_zip.sh`
1.7 KiB
1.7 KiB
title, language
| title | language |
|---|---|
| SHOW-LOAD-WARNINGS | en |
SHOW-LOAD-WARNINGS
Name
SHOW LOAD WARNINGS
Description
If the import task fails and the error message is ETL_QUALITY_UNSATISFIED, it means that there is an import quality problem. If you want to see these import tasks with quality problems, change the statement to complete this operation.
grammar:
SHOW LOAD WARNINGS
[FROM db_name]
[
WHERE
[LABEL[="your_label"]]
[LOAD_JOB_ID = ["job id"]]
]
- If db_name is not specified, the current default db is used
- If LABEL = is used, it matches the specified label exactly
- If LOAD_JOB_ID is specified, match the specified JOB ID exactly
Example
-
Display the data with quality problems in the import task of the specified db, and specify the label as "load_demo_20210112"
SHOW LOAD WARNINGS FROM demo WHERE LABEL = "load_demo_20210112"
Keywords
SHOW, LOAD, WARNINGS