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
36aae14f
Commit
36aae14f
authored
Jun 12, 2003
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HANDLER priv check fixed
parent
4302bfdb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
sql/sql_parse.cc
sql/sql_parse.cc
+4
-2
No files found.
sql/sql_parse.cc
View file @
36aae14f
...
@@ -2476,8 +2476,10 @@ mysql_execute_command(void)
...
@@ -2476,8 +2476,10 @@ mysql_execute_command(void)
res
=
mysql_ha_close
(
thd
,
tables
);
res
=
mysql_ha_close
(
thd
,
tables
);
break
;
break
;
case
SQLCOM_HA_READ
:
case
SQLCOM_HA_READ
:
if
(
check_db_used
(
thd
,
tables
)
||
/* there is no need to check for table permissions here, because
check_table_access
(
thd
,
SELECT_ACL
,
tables
))
if a user has no permissions to read a table, he won't be
able to open it (with SQLCOM_HA_OPEN) in the first place. */
if
(
check_db_used
(
thd
,
tables
))
goto
error
;
goto
error
;
res
=
mysql_ha_read
(
thd
,
tables
,
lex
->
ha_read_mode
,
lex
->
backup_dir
,
res
=
mysql_ha_read
(
thd
,
tables
,
lex
->
ha_read_mode
,
lex
->
backup_dir
,
lex
->
insert_list
,
lex
->
ha_rkey_mode
,
select_lex
->
where
,
lex
->
insert_list
,
lex
->
ha_rkey_mode
,
select_lex
->
where
,
...
...
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