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
f31c165b
Commit
f31c165b
authored
Nov 27, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-union-4.1
parents
b6c49683
fe49bc9d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
47 additions
and
8 deletions
+47
-8
mysql-test/r/subselect.result
mysql-test/r/subselect.result
+4
-4
mysql-test/r/union.result
mysql-test/r/union.result
+20
-0
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+1
-1
mysql-test/t/union.test
mysql-test/t/union.test
+22
-3
No files found.
mysql-test/r/subselect.result
View file @
f31c165b
...
...
@@ -149,10 +149,10 @@ select (select a from t1 where t1.a=t2.b), a from t2;
(select a from t1 where t1.a=t2.b) a
NULL 1
NULL 2
select (select a from t1), a from t2;
(select a from t1) a
2 1
2 2
select (select a from t1), a
, (select 1 union select 2 limit 1)
from t2;
(select a from t1) a
(select 1 union select 2 limit 1)
2 1
1
2 2
1
select (select a from t3), a from t2;
(select a from t3) a
NULL 1
...
...
mysql-test/r/union.result
View file @
f31c165b
...
...
@@ -803,3 +803,23 @@ t1 CREATE TABLE `t1` (
`test` char(5) character set latin2 NOT NULL default ''
) TYPE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
create table t1 (s char(200));
insert into t1 values (repeat("1",200));
create table t2 select * from t1;
insert into t2 select * from t1;
insert into t1 select * from t2;
insert into t2 select * from t1;
insert into t1 select * from t2;
insert into t2 select * from t1;
set local tmp_table_size=1024;
select count(*) from (select * from t1 union all select * from t2 order by 1) b;
count(*)
21
select count(*) from t1;
count(*)
8
select count(*) from t2;
count(*)
13
drop table t1,t2;
set local tmp_table_size=default;
mysql-test/t/subselect.test
View file @
f31c165b
...
...
@@ -67,7 +67,7 @@ insert into t4 values (4,8),(3,8),(5,9);
select
(
select
a
from
t1
where
t1
.
a
=
a1
)
as
a2
,
(
select
b
from
t2
where
t2
.
b
=
a2
)
as
a1
;
select
(
select
a
from
t1
where
t1
.
a
=
t2
.
a
),
a
from
t2
;
select
(
select
a
from
t1
where
t1
.
a
=
t2
.
b
),
a
from
t2
;
select
(
select
a
from
t1
),
a
from
t2
;
select
(
select
a
from
t1
),
a
,
(
select
1
union
select
2
limit
1
)
from
t2
;
select
(
select
a
from
t3
),
a
from
t2
;
select
*
from
t2
where
t2
.
a
=
(
select
a
from
t1
);
insert
into
t3
values
(
6
),(
7
),(
3
);
...
...
mysql-test/t/union.test
View file @
f31c165b
...
...
@@ -306,8 +306,6 @@ drop table t1, t2;
#
# types conversions
#
create
table
t1
SELECT
"a"
as
a
UNION
select
"aa"
as
a
;
select
*
from
t1
;
show
create
table
t1
;
...
...
@@ -416,4 +414,25 @@ drop table t1;
create
table
t1
select
_latin1
"test"
union
select
_latin2
"testt"
;
create
table
t1
select
_latin2
"test"
union
select
_latin2
"testt"
;
show
create
table
t1
;
drop
table
t1
;
\ No newline at end of file
drop
table
t1
;
#
# conversion memory->disk table
#
#
# conversion memory->disk table
#
create
table
t1
(
s
char
(
200
));
insert
into
t1
values
(
repeat
(
"1"
,
200
));
create
table
t2
select
*
from
t1
;
insert
into
t2
select
*
from
t1
;
insert
into
t1
select
*
from
t2
;
insert
into
t2
select
*
from
t1
;
insert
into
t1
select
*
from
t2
;
insert
into
t2
select
*
from
t1
;
set
local
tmp_table_size
=
1024
;
select
count
(
*
)
from
(
select
*
from
t1
union
all
select
*
from
t2
order
by
1
)
b
;
select
count
(
*
)
from
t1
;
select
count
(
*
)
from
t2
;
drop
table
t1
,
t2
;
set
local
tmp_table_size
=
default
;
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