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
7ed27533
Commit
7ed27533
authored
Dec 02, 2004
by
ram@gw.mysql.r18.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A fix (bug #6878: Crash with engine=memory).
parent
7219d2be
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
0 deletions
+27
-0
heap/hp_open.c
heap/hp_open.c
+7
-0
mysql-test/r/heap.result
mysql-test/r/heap.result
+9
-0
mysql-test/t/heap.test
mysql-test/t/heap.test
+11
-0
No files found.
heap/hp_open.c
View file @
7ed27533
...
...
@@ -41,6 +41,13 @@ HP_INFO *heap_open(const char *name, int mode, uint keys, HP_KEYDEF *keydef,
{
DBUG_PRINT
(
"info"
,(
"Initializing new table"
));
implicit_emptied
=
1
;
/*
We have to store sometimes byte* del_link in records,
so the record length should be at least sizeof(byte*)
*/
set_if_bigger
(
reclength
,
sizeof
(
byte
*
));
for
(
i
=
key_segs
=
max_length
=
0
;
i
<
keys
;
i
++
)
{
key_segs
+=
keydef
[
i
].
keysegs
;
...
...
mysql-test/r/heap.result
View file @
7ed27533
...
...
@@ -227,3 +227,12 @@ SELECT MAX(job_title_id) FROM job_titles;
MAX(job_title_id)
NULL
DROP TABLE job_titles;
create table t1(a char(2)) type=heap;
insert into t1 values (NULL), (NULL);
delete from t1 where a is null;
insert into t1 values ('2'), ('3');
select * from t1;
a
3
2
drop table t1;
mysql-test/t/heap.test
View file @
7ed27533
...
...
@@ -161,3 +161,14 @@ CREATE TABLE `job_titles` (
SELECT
MAX
(
job_title_id
)
FROM
job_titles
;
DROP
TABLE
job_titles
;
#
# Bug #6878: a problem with small length records
#
create
table
t1
(
a
char
(
2
))
type
=
heap
;
insert
into
t1
values
(
NULL
),
(
NULL
);
delete
from
t1
where
a
is
null
;
insert
into
t1
values
(
'2'
),
(
'3'
);
select
*
from
t1
;
drop
table
t1
;
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