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
fd37c0be
Commit
fd37c0be
authored
Jun 13, 2003
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug #251 - destroyed object reused - fixed
parent
c65c342d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
sql/field.h
sql/field.h
+5
-4
sql/sql_select.cc
sql/sql_select.cc
+1
-1
No files found.
sql/field.h
View file @
fd37c0be
...
@@ -134,6 +134,7 @@ class Field
...
@@ -134,6 +134,7 @@ class Field
virtual
void
sort_string
(
char
*
buff
,
uint
length
)
=
0
;
virtual
void
sort_string
(
char
*
buff
,
uint
length
)
=
0
;
virtual
bool
optimize_range
(
uint
idx
);
virtual
bool
optimize_range
(
uint
idx
);
virtual
bool
store_for_compare
()
{
return
0
;
}
virtual
bool
store_for_compare
()
{
return
0
;
}
virtual
void
free
()
{}
Field
*
new_field
(
MEM_ROOT
*
root
,
struct
st_table
*
new_table
)
Field
*
new_field
(
MEM_ROOT
*
root
,
struct
st_table
*
new_table
)
{
{
Field
*
tmp
=
(
Field
*
)
memdup_root
(
root
,(
char
*
)
this
,
size_of
());
Field
*
tmp
=
(
Field
*
)
memdup_root
(
root
,(
char
*
)
this
,
size_of
());
...
@@ -937,7 +938,7 @@ class Field_blob :public Field_str {
...
@@ -937,7 +938,7 @@ class Field_blob :public Field_str {
int
pack_cmp
(
const
char
*
b
,
uint
key_length
);
int
pack_cmp
(
const
char
*
b
,
uint
key_length
);
uint
packed_col_length
(
const
char
*
col_ptr
,
uint
length
);
uint
packed_col_length
(
const
char
*
col_ptr
,
uint
length
);
uint
max_packed_col_length
(
uint
max_length
);
uint
max_packed_col_length
(
uint
max_length
);
inline
void
free
()
{
value
.
free
();
}
void
free
()
{
value
.
free
();
}
inline
void
clear_temporary
()
{
bzero
((
char
*
)
&
value
,
sizeof
(
value
));
}
inline
void
clear_temporary
()
{
bzero
((
char
*
)
&
value
,
sizeof
(
value
));
}
friend
void
field_conv
(
Field
*
to
,
Field
*
from
);
friend
void
field_conv
(
Field
*
to
,
Field
*
from
);
uint
size_of
()
const
{
return
sizeof
(
*
this
);
}
uint
size_of
()
const
{
return
sizeof
(
*
this
);
}
...
...
sql/sql_select.cc
View file @
fd37c0be
...
@@ -4791,7 +4791,7 @@ free_tmp_table(THD *thd, TABLE *entry)
...
@@ -4791,7 +4791,7 @@ free_tmp_table(THD *thd, TABLE *entry)
(
void
)
ha_delete_table
(
entry
->
db_type
,
entry
->
real_name
);
(
void
)
ha_delete_table
(
entry
->
db_type
,
entry
->
real_name
);
/* free blobs */
/* free blobs */
for
(
Field
**
ptr
=
entry
->
field
;
*
ptr
;
ptr
++
)
for
(
Field
**
ptr
=
entry
->
field
;
*
ptr
;
ptr
++
)
delete
*
ptr
;
(
*
ptr
)
->
free
()
;
my_free
((
gptr
)
entry
->
record
[
0
],
MYF
(
0
));
my_free
((
gptr
)
entry
->
record
[
0
],
MYF
(
0
));
free_io_cache
(
entry
);
free_io_cache
(
entry
);
...
...
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