8000 Add sha256 and chaching sha2 auth support by methane · Pull Request #682 · PyMySQL/PyMySQL · GitHub
[go: up one dir, main page]

Skip to content

Add sha256 and chaching sha2 auth support #682

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

Merged
merged 21 commits into from
Jun 26, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Add GRANT for "FLUSH PRIVILEGES"
  • Loading branch information
methane committed Jun 26, 2018
commit 40adcf5cff4ecdebde5b23d8f4c45739576c18c9
1 change: 1 addition & 0 deletions .travis/initializedb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ if [ ! -z "${DB}" ]; then
user_caching_sha2 IDENTIFIED WITH "caching_sha2_password" BY "pass_caching_sha2",
nopass_caching_sha2 IDENTIFIED WITH "caching_sha2_password"
PASSWORD EXPIRE NEVER;'
mysql -e 'GRANT RELOAD ON *.* TO user_caching_sha2;'
else
WITH_PLUGIN=''
fi
Expand Down
0