Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
df87be5e
Commit
df87be5e
authored
Oct 17, 2016
by
Elena Stepanova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-11069 main.information_schema test fails if hostname includes 'user'
Patch provided by Honza Horak
parent
eac8d95f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
mysql-test/r/information_schema.result
mysql-test/r/information_schema.result
+4
-4
mysql-test/t/information_schema.test
mysql-test/t/information_schema.test
+4
-4
No files found.
mysql-test/r/information_schema.result
View file @
df87be5e
...
...
@@ -986,19 +986,19 @@ show grants;
Grants for user3@localhost
GRANT USAGE ON *.* TO 'user3'@'localhost'
GRANT SELECT ON `mysqltest`.* TO 'user3'@'localhost'
select * from information_schema.column_privileges where grantee like '
%
user%'
select * from information_schema.column_privileges where grantee like '
\'
user%'
order by grantee;
GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
'user1'@'localhost' def mysqltest t1 f1 SELECT NO
select * from information_schema.table_privileges where grantee like '
%
user%'
select * from information_schema.table_privileges where grantee like '
\'
user%'
order by grantee;
GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
'user2'@'localhost' def mysqltest t2 SELECT NO
select * from information_schema.schema_privileges where grantee like '
%
user%'
select * from information_schema.schema_privileges where grantee like '
\'
user%'
order by grantee;
GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
'user3'@'localhost' def mysqltest SELECT NO
select * from information_schema.user_privileges where grantee like '
%
user%'
select * from information_schema.user_privileges where grantee like '
\'
user%'
order by grantee;
GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
'user1'@'localhost' def USAGE NO
...
...
mysql-test/t/information_schema.test
View file @
df87be5e
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment