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
6082f484
Commit
6082f484
authored
Jul 20, 2004
by
mskold@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added test for bug#4595
parent
9311492f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
mysql-test/r/ndb_index_ordered.result
mysql-test/r/ndb_index_ordered.result
+9
-0
mysql-test/t/ndb_index_ordered.test
mysql-test/t/ndb_index_ordered.test
+2
-1
No files found.
mysql-test/r/ndb_index_ordered.result
View file @
6082f484
...
@@ -82,6 +82,15 @@ a b c
...
@@ -82,6 +82,15 @@ a b c
4 5 12
4 5 12
5 6 12
5 6 12
6 7 12
6 7 12
update t1 set b = b + 1 where b > 4 and b < 7;
select * from t1 order by a;
a b c
1 2 13
2 3 13
3 4 12
4 6 12
5 7 12
6 7 12
drop table t1;
drop table t1;
CREATE TABLE t1 (
CREATE TABLE t1 (
a int unsigned NOT NULL PRIMARY KEY,
a int unsigned NOT NULL PRIMARY KEY,
...
...
mysql-test/t/ndb_index_ordered.test
View file @
6082f484
...
@@ -42,7 +42,8 @@ update t1 set c = 12 where b > 0;
...
@@ -42,7 +42,8 @@ update t1 set c = 12 where b > 0;
select
*
from
t1
order
by
a
;
select
*
from
t1
order
by
a
;
update
t1
set
c
=
13
where
b
<=
3
;
update
t1
set
c
=
13
where
b
<=
3
;
select
*
from
t1
order
by
a
;
select
*
from
t1
order
by
a
;
update
t1
set
b
=
b
+
1
where
b
>
4
and
b
<
7
;
select
*
from
t1
order
by
a
;
#
#
# Delete using ordered index scan
# Delete using ordered index scan
...
...
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