Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into james/mysql
  • Loading branch information
James Cor committed Dec 2, 2024
2 parents e319b3a + b132fad commit 70bd258
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions enginetest/queries/information_schema_queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -1815,11 +1815,11 @@ from information_schema.routines where routine_schema = 'mydb' and routine_type
Expected: []sql.Row{{"information_schema"}},
},
{
Query: "create database information_schema;",
Query: "create database information_schema;",
ExpectedErr: sql.ErrDatabaseExists,
},
{
Query: "drop database information_schema;",
Query: "drop database information_schema;",
ExpectedErrStr: "unable to drop database: information_schema",
},
{
Expand Down
4 changes: 2 additions & 2 deletions enginetest/queries/mysql_db_queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ var MySqlDbTests = []ScriptTest{
Expected: []sql.Row{{"mysql"}},
},
{
Query: "create database mysql;",
Query: "create database mysql;",
ExpectedErr: sql.ErrDatabaseExists,
},
{
Query: "drop database mysql;",
Query: "drop database mysql;",
ExpectedErrStr: "unable to drop database: mysql",
},
{
Expand Down

0 comments on commit 70bd258

Please sign in to comment.