Last active
August 17, 2023 06:17
-
-
Save yahonda/c7c77a30990f6bbde977e40902156d28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tiup playground nightly | |
| ssh -L 127.0.0.1:3306127.0.0.1:4000 -N 127.0.0.1 | |
| mysql --comments --host 127.0.0.1 --port 4000 -u root | |
| CREATE USER 'rails'@'localhost'; | |
| GRANT ALL PRIVILEGES ON activerecord_unittest.* | |
| to 'rails'@'localhost'; | |
| GRANT ALL PRIVILEGES ON activerecord_unittest2.* | |
| to 'rails'@'localhost'; | |
| GRANT ALL PRIVILEGES ON inexistent_activerecord_unittest.* | |
| to 'rails'@'localhost'; | |
| mysql --comments --host 127.0.0.1 --port 4000 -u rails | |
| drop database activerecord_unittest; | |
| drop database activerecord_unittest2; | |
| create database activerecord_unittest; | |
| create database activerecord_unittest2; | |
| mysql2: | |
| arunit: | |
| url: "mysql2://rails:@127.0.0.1:4000/activerecord_unittest?pool=5" | |
| arunit2: | |
| url: "mysql2://rails:@127.0.0.1:4000/activerecord_unittest2?pool=5" |
Author
yahonda
commented
Jul 14, 2023
- Unsupported features
- Non-determistic
- Unknown
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment