Skip to content
Open
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 dynamic-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ If an error occurs during the batch modification, a warning is returned:
{{< copyable "sql" >}}

```sql
set config tikv `log-level`='warn';
set config tikv `log-level`='warn'; -- correct config item is log.level
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

low

Thanks for adding this clarification. To improve readability and adhere to the style guide, it's best to format configuration items within backticks and ensure comments are complete sentences.

Suggested change
set config tikv `log-level`='warn'; -- correct config item is log.level
set config tikv `log-level`='warn'; -- The correct config item is `log.level`.
References
  1. The style guide specifies that configuration items should be enclosed in backticks for proper formatting. (link)

Copy link

Copilot AI Feb 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline SQL comment will be included when users copy this code using the copyable button. Since this example demonstrates an error case (as indicated by the section "If an error occurs during the batch modification, a warning is returned"), including the correction in a copyable SQL comment may be confusing. Consider moving this clarification to a markdown note or regular text outside the code block, similar to how other documentation in this repository handles explanatory notes for code examples.

Copilot uses AI. Check for mistakes.
```

```sql
Expand Down