Skip to content

arthurschreiber/mysql-bug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Readme

Start services via docker-compose:

$ docker-compose up

Run reproduction steps:

$ docker-compose run mysql mysql -hmysql -uuser1 -ppassword -e "SELECT table_name FROM information_schema.tables WHERE table_schema = 'menagerie';"

# +------------+
# | table_name |
# +------------+
# | pet        |
# +------------+

$ docker-compose run mysql mysql -hmysql -uuser1 -ppassword -e "SELECT table_name FROM information_schema.tables WHERE table_schema = 'menagerie' and table_name = 'pet';"

# +------------+
# | table_name |
# +------------+
# | pet        |
# +------------+

$ docker-compose run mysql mysql -hmysql -uuser2 -ppassword -e "SELECT table_name FROM information_schema.tables WHERE table_schema = 'menagerie';"

# +------------+
# | table_name |
# +------------+
# | other_pet  |
# +------------+

$ docker-compose run mysql mysql -hmysql -uuser2 -ppassword -e "SELECT table_name FROM information_schema.tables WHERE table_schema = 'menagerie' and table_name = 'pet';"

# +------------+
# | table_name |
# +------------+
# | pet        |
# +------------+

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published