From f08f0d7a99bef053628864b405cf9ce04a7c1353 Mon Sep 17 00:00:00 2001 From: Ti Chi Robot Date: Sun, 7 Apr 2024 16:27:20 +0800 Subject: [PATCH] *: remove Chinese characters (#16923) (#16978) --- develop/dev-guide-insert-data.md | 2 +- develop/dev-guide-prepared-statement.md | 2 +- information-schema/information-schema-columns.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/develop/dev-guide-insert-data.md b/develop/dev-guide-insert-data.md index e8ab1f17b1b8a..628911670e11f 100644 --- a/develop/dev-guide-insert-data.md +++ b/develop/dev-guide-insert-data.md @@ -85,7 +85,7 @@ Due to the default MySQL JDBC Driver settings, you need to change some parameter | Parameter | Means | Recommended Scenario | Recommended Configuration| | :------------------------: | :-----------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------: | | `useServerPrepStmts` | Whether to use the server side to enable prepared statements | When you need to use a prepared statement more than once | `true` | -| `cachePrepStmts` | Whether the client caches prepared statements | `useServerPrepStmts=true` 时 | `true` | +| `cachePrepStmts` | Whether the client caches prepared statements | `useServerPrepStmts=true` | `true` | | `prepStmtCacheSqlLimit` | Maximum size of a prepared statement (256 characters by default) | When the prepared statement is greater than 256 characters | Configured according to the actual size of the prepared statement | | `prepStmtCacheSize` | Maximum number of prepared statement caches (25 by default) | When the number of prepared statements is greater than 25 | Configured according to the actual number of prepared statements | | `rewriteBatchedStatements` | Whether to rewrite **Batched** statements | When batch operations are required | `true` | diff --git a/develop/dev-guide-prepared-statement.md b/develop/dev-guide-prepared-statement.md index deac8b0424c94..1177cb78c0cad 100644 --- a/develop/dev-guide-prepared-statement.md +++ b/develop/dev-guide-prepared-statement.md @@ -203,7 +203,7 @@ The following configurations help you use the TiDB server-side prepared statemen | Parameter | Means | Recommended Scenario | Recommended Configuration| | :------------------------: | :-----------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------: | | `useServerPrepStmts` | Whether to use the server side to enable prepared statements | When you need to use a prepared statement more than once | `true` | -| `cachePrepStmts` | Whether the client caches prepared statements | `useServerPrepStmts=true` 时 | `true` | +| `cachePrepStmts` | Whether the client caches prepared statements | `useServerPrepStmts=true` | `true` | | `prepStmtCacheSqlLimit` | Maximum size of a prepared statement (256 characters by default) | When the prepared statement is greater than 256 characters | Configured according to the actual size of the prepared statement | | `prepStmtCacheSize` | Maximum number of prepared statements (25 by default) | When the number of prepared statements is greater than 25 | Configured according to the actual number of prepared statements | diff --git a/information-schema/information-schema-columns.md b/information-schema/information-schema-columns.md index 7535816ee6f73..5c675bf4a56d8 100644 --- a/information-schema/information-schema-columns.md +++ b/information-schema/information-schema-columns.md @@ -50,7 +50,7 @@ CREATE TABLE test.t1 (a int); SELECT * FROM COLUMNS WHERE table_schema='test' AND TABLE_NAME='t1'\G ``` -输出结果如下: +The output is as follows: ```sql *************************** 1. row ***************************