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
1ac7e54b
Commit
1ac7e54b
authored
Aug 03, 2002
by
Sinisa@sinisa.nasamreza.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Two small bug fixes ...
parent
8ada4087
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
Docs/manual.texi
Docs/manual.texi
+4
-0
sql/sql_parse.cc
sql/sql_parse.cc
+1
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+1
-0
No files found.
Docs/manual.texi
View file @
1ac7e54b
...
...
@@ -50070,6 +50070,10 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet
@item
Fixed bug in REVOKE that caused user resources to be randomly set
@item
Fixed bug with a new GRANT on TEMP TABLES
@item
Fixed bug in multi-table delete when tables are re-ordered in table
initialization method and ref_length's are of different sizes
@item
sql/sql_parse.cc
View file @
1ac7e54b
...
...
@@ -1469,7 +1469,7 @@ mysql_execute_command(void)
(
TABLE_LIST
*
)
lex
->
create_info
.
merge_list
.
first
))
goto
error
;
/* purecov: inspected */
if
(
grant_option
)
if
(
grant_option
&&
want_priv
!=
CREATE_TMP_ACL
)
{
/* Check that the first table has CREATE privilege */
TABLE_LIST
*
tmp_table_list
=
tables
->
next
;
...
...
sql/sql_yacc.yy
View file @
1ac7e54b
...
...
@@ -3445,6 +3445,7 @@ revoke:
lex->columns.empty();
lex->grant= lex->grant_tot_col=0;
lex->select->db=0;
bzero(&(lex->mqh),sizeof(lex->mqh));
}
grant_privileges ON opt_table FROM user_list;
...
...
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