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
dc4b2a4f
Commit
dc4b2a4f
authored
Aug 14, 2006
by
ramil/ram@mysql.com/myoffice.izhnet.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the heap_btree test repeatable.
parent
bc1e69d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
mysql-test/r/heap_btree.result
mysql-test/r/heap_btree.result
+7
-7
mysql-test/t/heap_btree.test
mysql-test/t/heap_btree.test
+3
-3
No files found.
mysql-test/r/heap_btree.result
View file @
dc4b2a4f
...
...
@@ -255,27 +255,27 @@ a
3
3
delete from t1 where a < 4;
select a from t1;
select a from t1
order by a
;
a
insert into t1 values (2), (2), (2), (1), (1), (3), (3), (3), (3);
select a from t1 where a > 4;
a
delete from t1 where a > 4;
select a from t1;
select a from t1
order by a
;
a
3
3
1
3
3
1
2
2
2
3
3
3
3
select a from t1 where a > 3;
a
delete from t1 where a >= 2;
select a from t1;
select a from t1
order by a
;
a
1
1
...
...
mysql-test/t/heap_btree.test
View file @
dc4b2a4f
...
...
@@ -172,14 +172,14 @@ create table t1(a int not null, key using btree(a)) engine=heap;
insert
into
t1
values
(
2
),
(
2
),
(
2
),
(
1
),
(
1
),
(
3
),
(
3
),
(
3
),
(
3
);
select
a
from
t1
where
a
>
2
;
delete
from
t1
where
a
<
4
;
select
a
from
t1
;
select
a
from
t1
order
by
a
;
insert
into
t1
values
(
2
),
(
2
),
(
2
),
(
1
),
(
1
),
(
3
),
(
3
),
(
3
),
(
3
);
select
a
from
t1
where
a
>
4
;
delete
from
t1
where
a
>
4
;
select
a
from
t1
;
select
a
from
t1
order
by
a
;
select
a
from
t1
where
a
>
3
;
delete
from
t1
where
a
>=
2
;
select
a
from
t1
;
select
a
from
t1
order
by
a
;
drop
table
t1
;
--
echo
End
of
4.1
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