Skip to content

Commit

Permalink
*: remove Chinese characters (#16923) (#16979)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Apr 7, 2024
1 parent 2a37184 commit 03aa1c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion develop/dev-guide-insert-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
2 changes: 1 addition & 1 deletion develop/dev-guide-prepared-statement.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

Expand Down
2 changes: 1 addition & 1 deletion information-schema/information-schema-columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ***************************
Expand Down

0 comments on commit 03aa1c9

Please sign in to comment.