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
30ca3e37
Commit
30ca3e37
authored
Aug 23, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/timka/mysql/src/5.0-virgin
into mysql.com:/home/timka/mysql/src/5.0-dbg
parents
04d7dad1
9f70b175
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
0 deletions
+38
-0
mysql-test/r/select.result
mysql-test/r/select.result
+15
-0
mysql-test/t/select.test
mysql-test/t/select.test
+23
-0
No files found.
mysql-test/r/select.result
View file @
30ca3e37
...
...
@@ -2765,3 +2765,18 @@ f1 f2 f3 f4
2 2 2 one
2 2 2 two
drop table t1,t2;
create table t1 (empnum smallint, grp int);
create table t2 (empnum int, name char(5));
insert into t1 values(1,1);
insert into t2 values(1,'bob');
create view v1 as select * from t2 inner join t1 using (empnum);
select * from v1;
empnum name grp
1 bob 1
drop table t1,t2;
drop view v1;
create table t1 (pk int primary key, b int);
create table t2 (pk int primary key, c int);
select pk from t1 inner join t2 using (pk);
pk
drop table t1,t2;
mysql-test/t/select.test
View file @
30ca3e37
...
...
@@ -2358,3 +2358,26 @@ insert into t1 values (" 2", 2);
insert
into
t2
values
(
" 2"
,
" one "
),(
" 2"
,
" two "
);
select
*
from
t1
left
join
t2
on
f1
=
f3
;
drop
table
t1
,
t2
;
#
# Bug #6558 Views: CREATE VIEW fails with JOIN ... USING
#
create
table
t1
(
empnum
smallint
,
grp
int
);
create
table
t2
(
empnum
int
,
name
char
(
5
));
insert
into
t1
values
(
1
,
1
);
insert
into
t2
values
(
1
,
'bob'
);
create
view
v1
as
select
*
from
t2
inner
join
t1
using
(
empnum
);
select
*
from
v1
;
drop
table
t1
,
t2
;
drop
view
v1
;
#
# Bug #10646 Columns included in the join between two tables are ambigious
# in the select
#
create
table
t1
(
pk
int
primary
key
,
b
int
);
create
table
t2
(
pk
int
primary
key
,
c
int
);
select
pk
from
t1
inner
join
t2
using
(
pk
);
drop
table
t1
,
t2
;
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