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
0869f3b8
Commit
0869f3b8
authored
Feb 06, 2006
by
anozdrin@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix merge (5.0 -> 5.1) of the patch for BUG#15166/15196.
parent
4d8a51ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
mysql-test/r/trigger-grant.result
mysql-test/r/trigger-grant.result
+3
-5
sql/item.cc
sql/item.cc
+2
-2
No files found.
mysql-test/r/trigger-grant.result
View file @
0869f3b8
...
...
@@ -195,18 +195,16 @@ CREATE TABLE t3(col CHAR(20));
CREATE TABLE t4(col CHAR(20));
CREATE USER mysqltest_u1@localhost;
REVOKE ALL PRIVILEGES, GRANT OPTION FROM mysqltest_u1@localhost;
GRANT SUPER ON *.* TO mysqltest_u1@localhost;
GRANT SELECT ON mysqltest_db1.t1 TO mysqltest_u1@localhost;
GRANT TRIGGER ON mysqltest_db1.* TO mysqltest_u1@localhost;
SET @mysqltest_var = NULL;
---> connection: default
use mysqltest_db1;
REVOKE SELECT ON mysqltest_db1.t1 FROM mysqltest_u1@localhost;
GRANT DELETE ON mysqltest_db1.* TO mysqltest_u1@localhost;
SHOW GRANTS FOR mysqltest_u1@localhost;
Grants for mysqltest_u1@localhost
GRANT
SUPER
ON *.* TO 'mysqltest_u1'@'localhost'
GRANT DELETE ON `mysqltest_db1`.* TO 'mysqltest_u1'@'localhost'
GRANT
USAGE
ON *.* TO 'mysqltest_u1'@'localhost'
GRANT DELETE
, TRIGGER
ON `mysqltest_db1`.* TO 'mysqltest_u1'@'localhost'
---> connection: bug15166_u1_con
use mysqltest_db1;
...
...
sql/item.cc
View file @
0869f3b8
...
...
@@ -5324,8 +5324,8 @@ bool Item_trigger_field::fix_fields(THD *thd, Item **items)
table_grants
->
want_privilege
=
access_type
==
AT_READ
?
SELECT_ACL
:
UPDATE_ACL
;
if
(
check_grant_column
(
thd
,
table_grants
,
triggers
->
table
->
s
->
db
,
triggers
->
table
->
s
->
table_name
,
field_name
,
if
(
check_grant_column
(
thd
,
table_grants
,
triggers
->
table
->
s
->
db
.
str
,
triggers
->
table
->
s
->
table_name
.
str
,
field_name
,
strlen
(
field_name
),
thd
->
security_ctx
))
return
TRUE
;
}
...
...
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