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
9b3d0b85
Commit
9b3d0b85
authored
Jun 17, 2005
by
tulin@dl145c.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_select.cc:
fixed 64bit bug in lenght store/retrive in cache
parent
dcb0e65d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
sql/sql_select.cc
sql/sql_select.cc
+4
-2
No files found.
sql/sql_select.cc
View file @
9b3d0b85
...
...
@@ -28,6 +28,8 @@
#include <hash.h>
#include <ft_global.h>
typedef
uint32
cache_rec_length_type
;
const
char
*
join_type_str
[]
=
{
"UNKNOWN"
,
"system"
,
"const"
,
"eq_ref"
,
"ref"
,
"MAYBE_REF"
,
"ALL"
,
"range"
,
"index"
,
"fulltext"
,
"ref_or_null"
,
"unique_subquery"
,
"index_subquery"
...
...
@@ -8067,7 +8069,7 @@ used_blob_length(CACHE_FIELD **ptr)
static
bool
store_record_in_cache
(
JOIN_CACHE
*
cache
)
{
ulong
length
;
cache_rec_length_type
length
;
uchar
*
pos
;
CACHE_FIELD
*
copy
,
*
end_field
;
bool
last_record
;
...
...
@@ -8148,7 +8150,7 @@ static void
read_cached_record
(
JOIN_TAB
*
tab
)
{
uchar
*
pos
;
uint
length
;
cache_rec_length_type
length
;
bool
last_record
;
CACHE_FIELD
*
copy
,
*
end_field
;
...
...
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