diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-10-25 16:41:43 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-10-25 16:41:43 +0200 |
commit | 12c3e16dfa872f19186761da28590c2703c96a6b (patch) | |
tree | e026ac1661b03e2048ca3eca043fd61dea37eee2 /mysql-test/t/information_schema.test | |
parent | 39dceaae607e2c9f53146d5b23f8dee330643cb2 (diff) | |
parent | 6e257274d98843b228e5bd08da74031f6f3a202d (diff) | |
download | mariadb-git-12c3e16dfa872f19186761da28590c2703c96a6b.tar.gz |
Merge branch '5.5' into 10.0
Diffstat (limited to 'mysql-test/t/information_schema.test')
-rw-r--r-- | mysql-test/t/information_schema.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/t/information_schema.test b/mysql-test/t/information_schema.test index b2e18097c65..2a00ad75a8d 100644 --- a/mysql-test/t/information_schema.test +++ b/mysql-test/t/information_schema.test @@ -612,13 +612,13 @@ select * from information_schema.schema_privileges order by grantee; select * from information_schema.user_privileges order by grantee; show grants; connection con4; -select * from information_schema.column_privileges where grantee like '%user%' +select * from information_schema.column_privileges where grantee like '\'user%' order by grantee; -select * from information_schema.table_privileges where grantee like '%user%' +select * from information_schema.table_privileges where grantee like '\'user%' order by grantee; -select * from information_schema.schema_privileges where grantee like '%user%' +select * from information_schema.schema_privileges where grantee like '\'user%' order by grantee; -select * from information_schema.user_privileges where grantee like '%user%' +select * from information_schema.user_privileges where grantee like '\'user%' order by grantee; show grants; connection default; |