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
9aa689fb
Commit
9aa689fb
authored
Jul 05, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix mysql-test-run ndb order by/endian issue
parent
f02f1d92
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
mysql-test/r/ndb_index_ordered.result
mysql-test/r/ndb_index_ordered.result
+2
-2
mysql-test/t/ndb_index_ordered.test
mysql-test/t/ndb_index_ordered.test
+1
-1
No files found.
mysql-test/r/ndb_index_ordered.result
View file @
9aa689fb
...
...
@@ -175,10 +175,10 @@ insert into t1 values (19,4, 0);
select * from t1 where b<=5 and c=0;
a b c
19 4 0
select * from t1 where b=4 and c<=5;
select * from t1 where b=4 and c<=5
order by a
;
a b c
19 4 0
17 4 4
19 4 0
select * from t1 where b<=4 and c<=5 order by a;
a b c
7 2 1
...
...
mysql-test/t/ndb_index_ordered.test
View file @
9aa689fb
...
...
@@ -106,7 +106,7 @@ select * from t1 where b<=5 order by a;
select
*
from
t1
where
b
<=
5
and
c
=
0
;
insert
into
t1
values
(
19
,
4
,
0
);
select
*
from
t1
where
b
<=
5
and
c
=
0
;
select
*
from
t1
where
b
=
4
and
c
<=
5
;
select
*
from
t1
where
b
=
4
and
c
<=
5
order
by
a
;
select
*
from
t1
where
b
<=
4
and
c
<=
5
order
by
a
;
select
*
from
t1
where
b
<=
5
and
c
=
0
or
b
<=
5
and
c
=
2
;
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