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
e9f6a0ff
Commit
e9f6a0ff
authored
Sep 15, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into serg.mylan:/usr/home/serg/Abk/mysql-5.0
parents
7683b19e
c7d162a2
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
360 additions
and
28 deletions
+360
-28
mysql-test/r/distinct.result
mysql-test/r/distinct.result
+0
-8
mysql-test/r/insert_select.result
mysql-test/r/insert_select.result
+0
-10
mysql-test/t/distinct.test
mysql-test/t/distinct.test
+360
-0
mysql-test/t/insert_select.test
mysql-test/t/insert_select.test
+0
-10
No files found.
mysql-test/r/distinct.result
View file @
e9f6a0ff
...
...
@@ -464,14 +464,6 @@ SELECT DISTINCT html,SUM(rout)/(SUM(rin)+1) as 'prod' FROM t1 GROUP BY rin;
html prod
1 0.0000
drop table t1;
create table t1 (id int, dsc varchar(50));
insert into t1 values (1, "line number one"), (2, "line number two"), (3, "line number three");
select distinct id, IFNULL(dsc, '-') from t1;
id IFNULL(dsc, '-')
1 line number one
2 line number two
3 line number three
drop table t1;
CREATE TABLE t1 (a int);
INSERT INTO t1 VALUES (1),(2),(3),(4),(5);
SELECT DISTINCT a, 1 FROM t1;
...
...
mysql-test/r/insert_select.result
View file @
e9f6a0ff
...
...
@@ -668,13 +668,3 @@ ERROR 42S22: Unknown column 't2.a' in 'field list'
insert into t1 select t2.a from t2 group by t2.a on duplicate key update a= t1.a + t2.b;
ERROR 42S22: Unknown column 't2.b' in 'field list'
drop table t1,t2,t3;
create table t1(f1 varchar(5) key);
insert into t1(f1) select if(max(f1) is null, '2000',max(f1)+1) from t1;
insert into t1(f1) select if(max(f1) is null, '2000',max(f1)+1) from t1;
insert into t1(f1) select if(max(f1) is null, '2000',max(f1)+1) from t1;
select * from t1;
f1
2000
2001
2002
drop table t1;
mysql-test/t/distinct.test
View file @
e9f6a0ff
This diff is collapsed.
Click to expand it.
mysql-test/t/insert_select.test
View file @
e9f6a0ff
...
...
@@ -202,14 +202,4 @@ insert into t1 select t2.a from t2 on duplicate key update t2.a= a + t2.b;
insert
into
t1
select
t2
.
a
from
t2
group
by
t2
.
a
on
duplicate
key
update
a
=
t1
.
a
+
t2
.
b
;
drop
table
t1
,
t2
,
t3
;
#
# Bug #12695 Item_func_isnull::update_used_tables() did not update
# const_item_cache
create
table
t1
(
f1
varchar
(
5
)
key
);
insert
into
t1
(
f1
)
select
if
(
max
(
f1
)
is
null
,
'2000'
,
max
(
f1
)
+
1
)
from
t1
;
insert
into
t1
(
f1
)
select
if
(
max
(
f1
)
is
null
,
'2000'
,
max
(
f1
)
+
1
)
from
t1
;
insert
into
t1
(
f1
)
select
if
(
max
(
f1
)
is
null
,
'2000'
,
max
(
f1
)
+
1
)
from
t1
;
select
*
from
t1
;
drop
table
t1
;
# End of 4.1 tests
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