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
d6923a6c
Commit
d6923a6c
authored
Mar 10, 2003
by
Sinisa@sinisa.nasamreza.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding tests for the fixed ORDER BY 0 bug
parent
dafa51ec
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
0 deletions
+8
-0
mysql-test/r/derived.result
mysql-test/r/derived.result
+2
-0
mysql-test/r/union.result
mysql-test/r/union.result
+2
-0
mysql-test/t/derived.test
mysql-test/t/derived.test
+2
-0
mysql-test/t/union.test
mysql-test/t/union.test
+2
-0
No files found.
mysql-test/r/derived.result
View file @
d6923a6c
...
@@ -146,3 +146,5 @@ SELECT 1 as a FROM (SELECT a UNION SELECT 1) b;
...
@@ -146,3 +146,5 @@ SELECT 1 as a FROM (SELECT a UNION SELECT 1) b;
Unknown column 'a' in 'field list'
Unknown column 'a' in 'field list'
SELECT 1 as a FROM (SELECT 1 UNION SELECT a) b;
SELECT 1 as a FROM (SELECT 1 UNION SELECT a) b;
Unknown column 'a' in 'field list'
Unknown column 'a' in 'field list'
select 1 from (select 2) a order by 0;
Unknown column '0' in 'order clause'
mysql-test/r/union.result
View file @
d6923a6c
...
@@ -267,3 +267,5 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -267,3 +267,5 @@ id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 const PRIMARY PRIMARY 4 const 1
1 PRIMARY t1 const PRIMARY PRIMARY 4 const 1
2 UNION t1 ref b b 5 const 1 Using where
2 UNION t1 ref b b 5 const 1 Using where
drop table t1,t2;
drop table t1,t2;
(select 1) union (select 2) order by 0;
Unknown column '0' in 'order clause'
mysql-test/t/derived.test
View file @
d6923a6c
...
@@ -62,3 +62,5 @@ SELECT * FROM (SELECT 1 UNION SELECT a) b;
...
@@ -62,3 +62,5 @@ SELECT * FROM (SELECT 1 UNION SELECT a) b;
SELECT
1
as
a
FROM
(
SELECT
a
UNION
SELECT
1
)
b
;
SELECT
1
as
a
FROM
(
SELECT
a
UNION
SELECT
1
)
b
;
--
error
1054
--
error
1054
SELECT
1
as
a
FROM
(
SELECT
1
UNION
SELECT
a
)
b
;
SELECT
1
as
a
FROM
(
SELECT
1
UNION
SELECT
a
)
b
;
--
error
1054
select
1
from
(
select
2
)
a
order
by
0
;
mysql-test/t/union.test
View file @
d6923a6c
...
@@ -142,3 +142,5 @@ explain (select * from t1 where a=1) union (select * from t2 where a=1);
...
@@ -142,3 +142,5 @@ explain (select * from t1 where a=1) union (select * from t2 where a=1);
explain
(
select
*
from
t1
where
a
=
1
and
b
=
10
)
union
(
select
t1
.
a
,
t2
.
a
from
t1
,
t2
where
t1
.
a
=
t2
.
a
);
explain
(
select
*
from
t1
where
a
=
1
and
b
=
10
)
union
(
select
t1
.
a
,
t2
.
a
from
t1
,
t2
where
t1
.
a
=
t2
.
a
);
explain
(
select
*
from
t1
where
a
=
1
)
union
(
select
*
from
t1
where
b
=
1
);
explain
(
select
*
from
t1
where
a
=
1
)
union
(
select
*
from
t1
where
b
=
1
);
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
--
error
1054
(
select
1
)
union
(
select
2
)
order
by
0
;
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