Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

*: remove Chinese characters (#16923) #16981

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading