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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
1d03fb71
Commit
1d03fb71
authored
May 15, 2009
by
Matthias Leich
Browse files
Options
Browse Files
Download
Plain Diff
Merge of fix into GCA tree, no conflicts
parents
df41cc20
f4eb0953
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
21 deletions
+31
-21
mysql-test/r/information_schema_db.result
mysql-test/r/information_schema_db.result
+4
-4
mysql-test/t/information_schema_db.test
mysql-test/t/information_schema_db.test
+27
-17
No files found.
mysql-test/r/information_schema_db.result
View file @
1d03fb71
mysql-test/t/information_schema_db.test
View file @
1d03fb71
...
...
@@ -105,7 +105,7 @@ drop function f2;
drop
view
v1
,
v2
;
#
# Bug#20543
:
select on information_schema strange warnings, view, different
# Bug#20543 select on information_schema strange warnings, view, different
# schemas/users
#
#
...
...
@@ -125,7 +125,7 @@ grant insert on v1 to testdb_2@localhost;
create
view
v5
as
select
f1
from
t1
;
grant
show
view
on
v5
to
testdb_2
@
localhost
;
--
error
1227
--
error
ER_SPECIFIC_ACCESS_DENIED_ERROR
create
definer
=
`no_such_user`
@
`no_such_host`
view
v6
as
select
f1
from
t1
;
connection
default
;
...
...
@@ -169,30 +169,30 @@ use testdb_1;
revoke
show
view
on
v6
from
testdb_2
@
localhost
;
connection
testdb_2
;
--
error
1142
--
error
ER_TABLEACCESS_DENIED_ERROR
show
fields
from
testdb_1
.
v5
;
--
error
1142
--
error
ER_TABLEACCESS_DENIED_ERROR
show
create
view
testdb_1
.
v5
;
--
error
1142
--
error
ER_TABLEACCESS_DENIED_ERROR
show
fields
from
testdb_1
.
v6
;
--
error
1142
--
error
ER_TABLEACCESS_DENIED_ERROR
show
create
view
testdb_1
.
v6
;
--
error
1142
--
error
ER_TABLEACCESS_DENIED_ERROR
show
fields
from
testdb_1
.
v7
;
--
error
1142
--
error
ER_TABLEACCESS_DENIED_ERROR
show
create
view
testdb_1
.
v7
;
--
error
1345
--
error
ER_VIEW_NO_EXPLAIN
show
create
view
v4
;
#--error
1345
#--error
ER_VIEW_NO_EXPLAIN
show
fields
from
v4
;
show
fields
from
v2
;
show
fields
from
testdb_1
.
v1
;
show
create
view
v2
;
--
error
1142
--
error
ER_TABLEACCESS_DENIED_ERROR
show
create
view
testdb_1
.
v1
;
select
table_name
from
information_schema
.
columns
a
...
...
@@ -202,13 +202,20 @@ where a.table_name = 'v2';
select
view_definition
from
information_schema
.
views
a
where
a
.
table_name
=
'testdb_1.v1'
;
--
error
1356
--
error
ER_VIEW_INVALID
select
*
from
v2
;
connection
default
;
use
test
;
drop
view
testdb_1
.
v1
,
v2
,
testdb_1
.
v3
,
v4
;
drop
database
testdb_1
;
connection
testdb_1
;
disconnect
testdb_1
;
--
source
include
/
wait_until_disconnected
.
inc
connection
testdb_2
;
disconnect
testdb_2
;
--
source
include
/
wait_until_disconnected
.
inc
connection
default
;
drop
user
testdb_1
@
localhost
;
drop
user
testdb_2
@
localhost
;
...
...
@@ -239,4 +246,7 @@ show create view testdb_1.v1;
connection
default
;
drop
user
mysqltest_1
@
localhost
;
drop
database
testdb_1
;
connection
user1
;
disconnect
user1
;
--
source
include
/
wait_until_disconnected
.
inc
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