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
4a8024c5
Commit
4a8024c5
authored
Jun 09, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge baker@bk-internal.mysql.com:/home/bk/mysql-5.0
into brian-akers-computer.local:/Users/brian/mysql/mysql-5.0
parents
d0db7027
e809d1e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
sql/log_event.cc
sql/log_event.cc
+1
-1
sql/sql_acl.cc
sql/sql_acl.cc
+2
-2
No files found.
sql/log_event.cc
View file @
4a8024c5
...
...
@@ -707,7 +707,7 @@ failed my_b_read"));
Log_event
*
res
=
0
;
#ifndef max_allowed_packet
THD
*
thd
=
current_thd
;
uint
max_allowed_packet
=
thd
?
thd
->
variables
.
max_allowed_packet
:
~
0
;
uint
max_allowed_packet
=
thd
?
thd
->
variables
.
max_allowed_packet
:
~
(
ulong
)
0
;
#endif
if
(
data_len
>
max_allowed_packet
)
...
...
sql/sql_acl.cc
View file @
4a8024c5
...
...
@@ -5172,7 +5172,7 @@ bool mysql_revoke_all(THD *thd, List <LEX_USER> &list)
grant_proc
->
db
,
grant_proc
->
tname
,
is_proc
,
~
0
,
1
))
~
(
ulong
)
0
,
1
))
{
revoked
=
1
;
continue
;
...
...
@@ -5240,7 +5240,7 @@ bool sp_revoke_privileges(THD *thd, const char *sp_db, const char *sp_name,
lex_user
.
host
.
length
=
strlen
(
grant_proc
->
host
.
hostname
);
if
(
!
replace_routine_table
(
thd
,
grant_proc
,
tables
[
4
].
table
,
lex_user
,
grant_proc
->
db
,
grant_proc
->
tname
,
is_proc
,
~
0
,
1
))
is_proc
,
~
(
ulong
)
0
,
1
))
{
revoked
=
1
;
continue
;
...
...
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