summaryrefslogtreecommitdiff
path: root/mysql-test/r/information_schema.result
diff options
context:
space:
mode:
authorunknown <knielsen@knielsen-hq.org>2012-11-20 13:57:49 +0100
committerunknown <knielsen@knielsen-hq.org>2012-11-20 13:57:49 +0100
commitecf04668a2db3d7fc91e421e68eeb5ab25064aa0 (patch)
tree67fb1a5b050c913ad21f9c30628ff3ef0fd81f2c /mysql-test/r/information_schema.result
parentdd2d59924e06afb29e36a6dda56f6fb393ef6c6e (diff)
parentcbae294396429682a22371f23a048dcd0d4c71da (diff)
downloadmariadb-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.result6
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.