Skip to content

Instantly share code, notes, and snippets.

@yahonda
Last active August 17, 2023 06:17
Show Gist options
  • Select an option

  • Save yahonda/c7c77a30990f6bbde977e40902156d28 to your computer and use it in GitHub Desktop.

Select an option

Save yahonda/c7c77a30990f6bbde977e40902156d28 to your computer and use it in GitHub Desktop.
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"
@yahonda
Copy link
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