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
5f2016bb
Commit
5f2016bb
authored
Nov 27, 2002
by
bell@sanja.is.com.ua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
layout fix
parent
bfcd4a71
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
sql/filesort.cc
sql/filesort.cc
+2
-1
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+2
-2
No files found.
sql/filesort.cc
View file @
5f2016bb
...
...
@@ -84,7 +84,7 @@ ha_rows filesort(THD *thd, TABLE *table, SORT_FIELD *sortorder, uint s_length,
#endif
// BAR TODO: this is not absolutely correct, but OK for now
for
(
i
=
0
;
i
<
table
->
fields
;
i
++
)
for
(
i
=
0
;
i
<
table
->
fields
;
i
++
)
if
(
!
table
->
field
[
i
]
->
binary
())
charset
=
table
->
field
[
i
]
->
charset
();
// /BAR TODO
...
...
@@ -973,6 +973,7 @@ sortlength(SORT_FIELD *sortorder, uint s_length)
case
ROW_RESULT
:
// This case should never be choosen
DBUG_ASSERT
(
0
);
break
;
}
if
(
sortorder
->
item
->
maybe_null
)
length
++
;
// Place for NULL marker
...
...
sql/item_cmpfunc.cc
View file @
5f2016bb
...
...
@@ -131,7 +131,7 @@ Compare_func_row::Compare_func_row(Item_bool_func2 *owner, Item *a, Item* b):
return
;
}
cmp_func
=
(
Compare_func
**
)
sql_alloc
(
sizeof
(
Compare_func
*
)
*
n
);
for
(
uint
i
=
0
;
i
<
n
;
i
++
)
for
(
uint
i
=
0
;
i
<
n
;
i
++
)
cmp_func
[
i
]
=
Compare_func
::
get_compare_func
(
owner
,
a
->
el
(
i
),
b
->
el
(
i
));
}
...
...
@@ -191,7 +191,7 @@ int Compare_func_row::compare(Item *a, Item *b)
{
int
res
=
0
;
uint
n
=
a
->
cols
();
for
(
uint
i
=
0
;
i
<
n
;
i
++
)
for
(
uint
i
=
0
;
i
<
n
;
i
++
)
{
if
((
res
=
cmp_func
[
i
]
->
compare
(
a
->
el
(
i
),
b
->
el
(
i
))))
return
res
;
...
...
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