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
798952dc
Commit
798952dc
authored
Aug 12, 2004
by
ram@gw.mysql.r18.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A fix (Bug#4898: User privileges depending on ORDER BY Settings of table db)
parent
50a869d1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
sql/sql_acl.cc
sql/sql_acl.cc
+13
-5
No files found.
sql/sql_acl.cc
View file @
798952dc
...
...
@@ -460,22 +460,30 @@ static ulong get_sort(uint count,...)
va_start
(
args
,
count
);
ulong
sort
=
0
;
/* Should not use this function with more than 4 arguments for compare. */
DBUG_ASSERT
(
count
<=
4
);
while
(
count
--
)
{
char
*
str
=
va_arg
(
args
,
char
*
);
uint
chars
=
0
,
wild
=
0
;
char
*
start
,
*
str
=
va_arg
(
args
,
char
*
);
uint
chars
=
0
;
uint
wild_pos
=
0
;
/* first wildcard position */
if
(
str
)
if
(
st
art
=
st
r
)
{
for
(;
*
str
;
str
++
)
{
if
(
*
str
==
wild_many
||
*
str
==
wild_one
||
*
str
==
wild_prefix
)
wild
++
;
{
wild_pos
=
str
-
start
+
1
;
break
;
}
else
chars
++
;
}
}
sort
=
(
sort
<<
8
)
+
(
wild
?
1
:
chars
?
2
:
0
);
sort
=
(
sort
<<
8
)
+
(
wild_pos
?
(
wild_pos
>
127
?
127
:
wild_pos
)
:
(
chars
?
128
:
0
));
}
va_end
(
args
);
return
sort
;
...
...
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