*: support password reuse policy#39162
Conversation
modified: errno/errname.go modified: executor/errors.go modified: executor/simple.go
modified: executor/simple_test.go modified: session/bootstrap.go
modified: simple.go modified: simple_test.go modified: ../server/http_handler_serial_test.go modified: ../session/bootstrap.go modified: ../session/bootstrap_test.go modified: ../sessionctx/variable/tidb_vars.go
|
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. DetailsReviewer can indicate their review by submitting an approval review. |
modified: errno/errname.go modified: executor/errors.go modified: executor/simple.go
modified: executor/simple_test.go modified: session/bootstrap.go
modified: simple.go modified: simple_test.go modified: ../server/http_handler_serial_test.go modified: ../session/bootstrap.go modified: ../session/bootstrap_test.go modified: ../sessionctx/variable/tidb_vars.go
modified: parser/parser.go modified: parser/parser.y
…o enhance_passwd Conflicts: executor/infoschema_cluster_table_test.go executor/simple.go parser/parser.go server/http_handler_serial_test.go session/bootstrap.go
modified: executor/simple.go modified: session/bootstrap.go
modified: session/bootstrap.go
|
/cc cbcwestwolf |
|
Please run |
|
/run-unit-test |
done |
|
/cc ljun0712 |
Conflicts: session/bootstrap.go
…o enhance_passwd
|
/run-mysql-test tidb-test=pr/2022 |
|
@lastincisor: Thanks for your review. The bot only counts approvals from reviewers and higher roles in list, but you're still welcome to leave your comments. DetailsIn response to this: Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
Conflicts: parser/parser.go
|
/run-mysql-test tidb-test=pr/2022 |
|
/run-build |
|
/run-mysql-test tidb-test=pr/2022 |
|
/run-unit-test |
executor/simple.go
Outdated
| return nil, err | ||
| } | ||
| req := recordSet.NewChunk(nil) | ||
| err = recordSet.Next(ctx, req) |
There was a problem hiding this comment.
Please change it to:
var rowsNum int = 0
err = recordSet.Next(ctx, req)
if err == nil {
rowsNum = req.NumRows()
}
So that handle of err is obvious.
Co-authored-by: bb7133 <bb7133@gmail.com>
|
/run-mysql-test tidb-test=pr/2022 |
modified: executor/simple.go modified: session/bootstrap.go modified: sessionctx/variable/tidb_vars.go
|
/run-mysql-test tidb-test=pr/2022 |
1 similar comment
|
/run-mysql-test tidb-test=pr/2022 |
|
/merge |
|
This pull request has been accepted and is ready to merge. DetailsCommit hash: 53eac1e |
TiDB MergeCI notify🔴 Bad News! [3] CI still failing after this pr merged.
|
What problem does this PR solve?
Issue Number: ref #38937
Problem Summary:
What is changed and how it works?
the feature is the same as MySQL's .
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.