diff options
author | unknown <knielsen@knielsen-hq.org> | 2012-11-20 13:57:49 +0100 |
---|---|---|
committer | unknown <knielsen@knielsen-hq.org> | 2012-11-20 13:57:49 +0100 |
commit | ecf04668a2db3d7fc91e421e68eeb5ab25064aa0 (patch) | |
tree | 67fb1a5b050c913ad21f9c30628ff3ef0fd81f2c /mysql-test/r/information_schema.result | |
parent | dd2d59924e06afb29e36a6dda56f6fb393ef6c6e (diff) | |
parent | cbae294396429682a22371f23a048dcd0d4c71da (diff) | |
download | mariadb-git-ecf04668a2db3d7fc91e421e68eeb5ab25064aa0.tar.gz |
Merge MariaDB 5.2->5.3
Diffstat (limited to 'mysql-test/r/information_schema.result')
-rw-r--r-- | mysql-test/r/information_schema.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/information_schema.result b/mysql-test/r/information_schema.result index 886b6f4d7f3..a9dd69ef698 100644 --- a/mysql-test/r/information_schema.result +++ b/mysql-test/r/information_schema.result @@ -1689,4 +1689,10 @@ SELECT length(CAST(b AS CHAR)) FROM ubig; length(CAST(b AS CHAR)) 20 DROP TABLE ubig; +select 1 from information_schema.tables where table_schema=repeat('a', 2000); +1 +grant usage on *.* to mysqltest_1@localhost; +select 1 from information_schema.tables where table_schema=repeat('a', 2000); +1 +drop user mysqltest_1@localhost; End of 5.1 tests. |