Skip to content

Commit

Permalink
modify english desc
Browse files Browse the repository at this point in the history
  • Loading branch information
winfredLIN committed Jan 7, 2025
1 parent 41b059b commit b98ed81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqle/driver/mysql/plocale/active.en.toml
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,8 @@ DMLCheckSameTableJoinedMultipleTimesAnnotation = "If a single table is queried m
DMLCheckSameTableJoinedMultipleTimesDesc = "It is not recommended to join the same table multiple times"
DMLCheckSameTableJoinedMultipleTimesMessage = "Table %v is joined multiple times"
DMLCheckScanRowsAnnotation = "The filter condition must include the primary key or index to reduce the time complexity of the database query and improve query efficiency."
DMLCheckScanRowsDesc = "The number of rows scanned exceeds the threshold, the filter condition must include the primary key or index"
DMLCheckScanRowsMessage = "The number of rows scanned exceeds the threshold, the filter condition must include the primary key or index"
DMLCheckScanRowsDesc = "The number of rows scanned exceeds the threshold, please check the index configuration."
DMLCheckScanRowsMessage = "The number of rows scanned exceeds the threshold, please check the index configuration."
DMLCheckScanRowsParams1 = "Number of rows scanned (ten thousand)"
DMLCheckSelectForUpdateAnnotation = "SELECT FOR UPDATE will add an exclusive lock to each row of data in the query result set. Other threads will be blocked from updating and deleting the record, which can easily lead to a large number of lock waits in the database under high concurrency, affecting database query performance."
DMLCheckSelectForUpdateDesc = "It is not recommended to use SELECT FOR UPDATE"
Expand Down

0 comments on commit b98ed81

Please sign in to comment.