From 89437bab98ce356a830132acc3602f4f94f10349 Mon Sep 17 00:00:00 2001 From: terry1purcell Date: Thu, 28 Mar 2024 07:14:17 -0700 Subject: [PATCH] review comments march 28 --- sql-plan-replayer.md | 3 +-- tidb-cloud/tidb-cloud-import-local-files.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/sql-plan-replayer.md b/sql-plan-replayer.md index eae9492ebee18..d88f39f120708 100644 --- a/sql-plan-replayer.md +++ b/sql-plan-replayer.md @@ -198,8 +198,7 @@ After the scene is loaded and restored, you can diagnose and improve the executi > **Note:** > -> If you use `mysql` command line utility and encounter `ERROR 2068 (HY000): LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.`, you can add `--local-infile=true` in the connection string. - +> If you use the `mysql` command-line client and encounter `ERROR 2068 (HY000): LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.`, you can add `--local-infile=true` in the connection string. ## Use `PLAN REPLAYER CAPTURE` to capture target plans diff --git a/tidb-cloud/tidb-cloud-import-local-files.md b/tidb-cloud/tidb-cloud-import-local-files.md index e1aa7ae2eaa5f..ed20166acf53f 100644 --- a/tidb-cloud/tidb-cloud-import-local-files.md +++ b/tidb-cloud/tidb-cloud-import-local-files.md @@ -98,7 +98,7 @@ CREATE TABLE `import_test` ( LOAD DATA LOCAL INFILE 'load.txt' INTO TABLE import_test FIELDS TERMINATED BY ',' (name, address); ``` -If you use `mysql` command line utility and encounter `ERROR 2068 (HY000): LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.`, you can add `--local-infile=true` in the connection string. +If you use the `mysql` command-line client and encounter `ERROR 2068 (HY000): LOAD DATA LOCAL INFILE file request rejected due to restrictions on access.`, you can add `--local-infile=true` in the connection string. ### Why can't I query a column with a reserved keyword after importing data into TiDB Cloud?