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
8c9430a3
Commit
8c9430a3
authored
May 30, 2020
by
Varun Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed Sort_param::tmp_buffer from char* to String
parent
9983582a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
31 deletions
+12
-31
sql/filesort.cc
sql/filesort.cc
+10
-30
sql/sql_sort.h
sql/sql_sort.h
+2
-1
No files found.
sql/filesort.cc
View file @
8c9430a3
...
@@ -58,7 +58,6 @@ static bool save_index(Sort_param *param, uint count,
...
@@ -58,7 +58,6 @@ static bool save_index(Sort_param *param, uint count,
SORT_INFO
*
table_sort
);
SORT_INFO
*
table_sort
);
static
uint
suffix_length
(
ulong
string_length
);
static
uint
suffix_length
(
ulong
string_length
);
static
uint
sortlength
(
THD
*
thd
,
Sort_keys
*
sortorder
,
static
uint
sortlength
(
THD
*
thd
,
Sort_keys
*
sortorder
,
bool
*
multi_byte_charset
,
bool
*
allow_packing_for_sortkeys
);
bool
*
allow_packing_for_sortkeys
);
static
Addon_fields
*
get_addon_fields
(
TABLE
*
table
,
uint
sortlength
,
static
Addon_fields
*
get_addon_fields
(
TABLE
*
table
,
uint
sortlength
,
uint
*
addon_length
,
uint
*
addon_length
,
...
@@ -200,7 +199,7 @@ SORT_INFO *filesort(THD *thd, TABLE *table, Filesort *filesort,
...
@@ -200,7 +199,7 @@ SORT_INFO *filesort(THD *thd, TABLE *table, Filesort *filesort,
ha_rows
num_rows
=
HA_POS_ERROR
;
ha_rows
num_rows
=
HA_POS_ERROR
;
IO_CACHE
tempfile
,
buffpek_pointers
,
*
outfile
;
IO_CACHE
tempfile
,
buffpek_pointers
,
*
outfile
;
Sort_param
param
;
Sort_param
param
;
bool
multi_byte_charset
,
allow_packing_for_sortkeys
;
bool
allow_packing_for_sortkeys
;
Bounded_queue
<
uchar
,
uchar
>
pq
;
Bounded_queue
<
uchar
,
uchar
>
pq
;
SQL_SELECT
*
const
select
=
filesort
->
select
;
SQL_SELECT
*
const
select
=
filesort
->
select
;
ha_rows
max_rows
=
filesort
->
limit
;
ha_rows
max_rows
=
filesort
->
limit
;
...
@@ -248,8 +247,7 @@ SORT_INFO *filesort(THD *thd, TABLE *table, Filesort *filesort,
...
@@ -248,8 +247,7 @@ SORT_INFO *filesort(THD *thd, TABLE *table, Filesort *filesort,
sort
->
found_rows
=
HA_POS_ERROR
;
sort
->
found_rows
=
HA_POS_ERROR
;
param
.
sort_keys
=
sort_keys
;
param
.
sort_keys
=
sort_keys
;
uint
sort_len
=
sortlength
(
thd
,
sort_keys
,
&
multi_byte_charset
,
uint
sort_len
=
sortlength
(
thd
,
sort_keys
,
&
allow_packing_for_sortkeys
);
&
allow_packing_for_sortkeys
);
param
.
init_for_filesort
(
sort_len
,
table
,
max_rows
,
filesort
->
sort_positions
);
param
.
init_for_filesort
(
sort_len
,
table
,
max_rows
,
filesort
->
sort_positions
);
...
@@ -339,11 +337,8 @@ SORT_INFO *filesort(THD *thd, TABLE *table, Filesort *filesort,
...
@@ -339,11 +337,8 @@ SORT_INFO *filesort(THD *thd, TABLE *table, Filesort *filesort,
tracker
->
report_addon_fields_format
(
param
.
using_packed_addons
());
tracker
->
report_addon_fields_format
(
param
.
using_packed_addons
());
}
}
if
((
multi_byte_charset
||
param
.
using_packed_sortkeys
())
&&
if
(
param
.
tmp_buffer
.
alloc
(
param
.
sort_length
))
!
(
param
.
tmp_buffer
=
(
char
*
)
my_malloc
(
key_memory_Sort_param_tmp_buffer
,
goto
err
;
param
.
sort_length
,
MYF
(
MY_WME
|
MY_THREAD_SPECIFIC
))))
goto
err
;
if
(
open_cached_file
(
&
buffpek_pointers
,
mysql_tmpdir
,
TEMP_PREFIX
,
if
(
open_cached_file
(
&
buffpek_pointers
,
mysql_tmpdir
,
TEMP_PREFIX
,
DISK_BUFFER_SIZE
,
MYF
(
MY_WME
)))
DISK_BUFFER_SIZE
,
MYF
(
MY_WME
)))
...
@@ -438,7 +433,6 @@ SORT_INFO *filesort(THD *thd, TABLE *table, Filesort *filesort,
...
@@ -438,7 +433,6 @@ SORT_INFO *filesort(THD *thd, TABLE *table, Filesort *filesort,
error
=
0
;
error
=
0
;
err:
err:
my_free
(
param
.
tmp_buffer
);
if
(
!
subselect
||
!
subselect
->
is_uncacheable
())
if
(
!
subselect
||
!
subselect
->
is_uncacheable
())
{
{
if
(
!
param
.
using_addon_fields
())
if
(
!
param
.
using_addon_fields
())
...
@@ -1101,10 +1095,8 @@ Type_handler_string_result::make_sort_key_part(uchar *to, Item *item,
...
@@ -1101,10 +1095,8 @@ Type_handler_string_result::make_sort_key_part(uchar *to, Item *item,
if
(
maybe_null
)
if
(
maybe_null
)
*
to
++=
1
;
*
to
++=
1
;
char
*
tmp_buffer
=
param
->
tmp_buffer
?
param
->
tmp_buffer
:
(
char
*
)
to
;
String
tmp
(
tmp_buffer
,
param
->
tmp_buffer
?
param
->
sort_length
:
String
*
res
=
item
->
str_result
(
&
param
->
tmp_buffer
);
sort_field
->
length
,
cs
);
String
*
res
=
item
->
str_result
(
&
tmp
);
if
(
!
res
)
if
(
!
res
)
{
{
if
(
maybe_null
)
if
(
maybe_null
)
...
@@ -2181,8 +2173,6 @@ Type_handler_decimal_result::sort_length(THD *thd,
...
@@ -2181,8 +2173,6 @@ Type_handler_decimal_result::sort_length(THD *thd,
@param thd Thread handler
@param thd Thread handler
@param sortorder Order of items to sort
@param sortorder Order of items to sort
@param s_length Number of items to sort
@param s_length Number of items to sort
@param[out] multi_byte_charset Set to 1 if we are using multi-byte charset
(In which case we have to use strxnfrm())
@param allow_packing_for_sortkeys [out] set to false if packing sort keys is not
@param allow_packing_for_sortkeys [out] set to false if packing sort keys is not
allowed
allowed
...
@@ -2196,11 +2186,9 @@ Type_handler_decimal_result::sort_length(THD *thd,
...
@@ -2196,11 +2186,9 @@ Type_handler_decimal_result::sort_length(THD *thd,
*/
*/
static
uint
static
uint
sortlength
(
THD
*
thd
,
Sort_keys
*
sort_keys
,
bool
*
multi_byte_charset
,
sortlength
(
THD
*
thd
,
Sort_keys
*
sort_keys
,
bool
*
allow_packing_for_sortkeys
)
bool
*
allow_packing_for_sortkeys
)
{
{
uint
length
;
uint
length
;
*
multi_byte_charset
=
0
;
*
allow_packing_for_sortkeys
=
true
;
*
allow_packing_for_sortkeys
=
true
;
bool
allow_packing_for_keys
=
true
;
bool
allow_packing_for_keys
=
true
;
...
@@ -2226,10 +2214,8 @@ sortlength(THD *thd, Sort_keys *sort_keys, bool *multi_byte_charset,
...
@@ -2226,10 +2214,8 @@ sortlength(THD *thd, Sort_keys *sort_keys, bool *multi_byte_charset,
sortorder
->
cs
=
cs
;
sortorder
->
cs
=
cs
;
if
(
use_strnxfrm
((
cs
=
sortorder
->
field
->
sort_charset
())))
if
(
use_strnxfrm
((
cs
=
sortorder
->
field
->
sort_charset
())))
{
*
multi_byte_charset
=
true
;
sortorder
->
length
=
(
uint
)
cs
->
strnxfrmlen
(
sortorder
->
length
);
sortorder
->
length
=
(
uint
)
cs
->
strnxfrmlen
(
sortorder
->
length
);
}
if
(
sortorder
->
is_variable_sized
()
&&
allow_packing_for_keys
)
if
(
sortorder
->
is_variable_sized
()
&&
allow_packing_for_keys
)
{
{
allow_packing_for_keys
=
sortorder
->
check_if_packing_possible
(
thd
);
allow_packing_for_keys
=
sortorder
->
check_if_packing_possible
(
thd
);
...
@@ -2243,17 +2229,12 @@ sortlength(THD *thd, Sort_keys *sort_keys, bool *multi_byte_charset,
...
@@ -2243,17 +2229,12 @@ sortlength(THD *thd, Sort_keys *sort_keys, bool *multi_byte_charset,
}
}
else
else
{
{
CHARSET_INFO
*
cs
;
sortorder
->
item
->
type_handler
()
->
sort_length
(
thd
,
sortorder
->
item
,
sortorder
->
item
->
type_handler
()
->
sort_length
(
thd
,
sortorder
->
item
,
sortorder
);
sortorder
);
sortorder
->
type
=
sortorder
->
item
->
type_handler
()
->
is_packable
()
?
sortorder
->
type
=
sortorder
->
item
->
type_handler
()
->
is_packable
()
?
SORT_FIELD_ATTR
::
VARIABLE_SIZE
:
SORT_FIELD_ATTR
::
VARIABLE_SIZE
:
SORT_FIELD_ATTR
::
FIXED_SIZE
;
SORT_FIELD_ATTR
::
FIXED_SIZE
;
if
(
use_strnxfrm
((
cs
=
sortorder
->
item
->
collation
.
collation
)))
sortorder
->
cs
=
sortorder
->
item
->
collation
.
collation
;
{
*
multi_byte_charset
=
true
;
}
sortorder
->
cs
=
cs
;
if
(
sortorder
->
is_variable_sized
()
&&
allow_packing_for_keys
)
if
(
sortorder
->
is_variable_sized
()
&&
allow_packing_for_keys
)
{
{
allow_packing_for_keys
=
sortorder
->
check_if_packing_possible
(
thd
);
allow_packing_for_keys
=
sortorder
->
check_if_packing_possible
(
thd
);
...
@@ -2565,8 +2546,7 @@ Type_handler_string_result::make_packed_sort_key_part(uchar *to, Item *item,
...
@@ -2565,8 +2546,7 @@ Type_handler_string_result::make_packed_sort_key_part(uchar *to, Item *item,
if
(
maybe_null
)
if
(
maybe_null
)
*
to
++=
1
;
*
to
++=
1
;
String
tmp
(
param
->
tmp_buffer
,
param
->
sort_length
,
cs
);
String
*
res
=
item
->
str_result
(
&
param
->
tmp_buffer
);
String
*
res
=
item
->
str_result
(
&
tmp
);
if
(
!
res
)
if
(
!
res
)
{
{
if
(
maybe_null
)
if
(
maybe_null
)
...
...
sql/sql_sort.h
View file @
8c9430a3
...
@@ -536,7 +536,7 @@ class Sort_param {
...
@@ -536,7 +536,7 @@ class Sort_param {
uchar
*
unique_buff
;
uchar
*
unique_buff
;
bool
not_killable
;
bool
not_killable
;
char
*
tmp_buffer
;
String
tmp_buffer
;
// The fields below are used only by Unique class.
// The fields below are used only by Unique class.
qsort2_cmp
compare
;
qsort2_cmp
compare
;
BUFFPEK_COMPARE_CONTEXT
cmp_context
;
BUFFPEK_COMPARE_CONTEXT
cmp_context
;
...
@@ -544,6 +544,7 @@ class Sort_param {
...
@@ -544,6 +544,7 @@ class Sort_param {
Sort_param
()
Sort_param
()
{
{
memset
(
reinterpret_cast
<
void
*>
(
this
),
0
,
sizeof
(
*
this
));
memset
(
reinterpret_cast
<
void
*>
(
this
),
0
,
sizeof
(
*
this
));
tmp_buffer
.
set_thread_specific
();
}
}
void
init_for_filesort
(
uint
sortlen
,
TABLE
*
table
,
void
init_for_filesort
(
uint
sortlen
,
TABLE
*
table
,
ha_rows
maxrows
,
bool
sort_positions
);
ha_rows
maxrows
,
bool
sort_positions
);
...
...
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