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
d8d0f7f2
Commit
d8d0f7f2
authored
Oct 15, 2007
by
ramil/ram@ramil.myoffice.izhnet.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/ram/work/mysql-5.1-maint
into mysql.com:/home/ram/work/b30885/b30885.5.1
parents
c51df4a5
981ebebf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
mysql-test/r/heap_btree.result
mysql-test/r/heap_btree.result
+8
-0
mysql-test/t/heap_btree.test
mysql-test/t/heap_btree.test
+9
-0
No files found.
mysql-test/r/heap_btree.result
View file @
d8d0f7f2
...
@@ -321,4 +321,12 @@ DROP TABLE t1;
...
@@ -321,4 +321,12 @@ DROP TABLE t1;
CREATE TABLE t1 (a INT, UNIQUE USING BTREE(a)) ENGINE=MEMORY;
CREATE TABLE t1 (a INT, UNIQUE USING BTREE(a)) ENGINE=MEMORY;
INSERT INTO t1 VALUES(NULL),(NULL);
INSERT INTO t1 VALUES(NULL),(NULL);
DROP TABLE t1;
DROP TABLE t1;
create table t1(a varchar(255), b varchar(255),
key using btree (a,b)) engine=memory;
insert into t1 values (1, 1), (3, 3), (2, 2), (NULL, 1), (NULL, NULL), (0, 0);
select * from t1 where a is null;
a b
NULL NULL
NULL 1
drop table t1;
End of 5.0 tests
End of 5.0 tests
mysql-test/t/heap_btree.test
View file @
d8d0f7f2
...
@@ -235,5 +235,14 @@ CREATE TABLE t1 (a INT, UNIQUE USING BTREE(a)) ENGINE=MEMORY;
...
@@ -235,5 +235,14 @@ CREATE TABLE t1 (a INT, UNIQUE USING BTREE(a)) ENGINE=MEMORY;
INSERT
INTO
t1
VALUES
(
NULL
),(
NULL
);
INSERT
INTO
t1
VALUES
(
NULL
),(
NULL
);
DROP
TABLE
t1
;
DROP
TABLE
t1
;
#
# Bug #30885: MEMORY returns incorrect data if BTREE index is used for NULL lookup
#
create
table
t1
(
a
varchar
(
255
),
b
varchar
(
255
),
key
using
btree
(
a
,
b
))
engine
=
memory
;
insert
into
t1
values
(
1
,
1
),
(
3
,
3
),
(
2
,
2
),
(
NULL
,
1
),
(
NULL
,
NULL
),
(
0
,
0
);
select
*
from
t1
where
a
is
null
;
drop
table
t1
;
--
echo
End
of
5.0
tests
--
echo
End
of
5.0
tests
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