summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorserg@serg.mylan <>2004-08-24 18:20:27 +0200
committerserg@serg.mylan <>2004-08-24 18:20:27 +0200
commit8f254c1b7b7701438fb97c7d82c6be73f64322db (patch)
tree179713178fac20b06e086846212c3c30b0c68e63 /mysql-test
parent8f2d92c56aef76a6eec580a5ff360fedb13af6b5 (diff)
downloadmariadb-git-8f254c1b7b7701438fb97c7d82c6be73f64322db.tar.gz
followup
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/func_set.result3
1 files changed, 1 insertions, 2 deletions
diff --git a/mysql-test/r/func_set.result b/mysql-test/r/func_set.result
index 9c1cac790ff..2431406c128 100644
--- a/mysql-test/r/func_set.result
+++ b/mysql-test/r/func_set.result
@@ -41,8 +41,7 @@ interval(null, 1, 10, 100)
-1
drop table if exists t1,t2;
create table t1 (id int(10) not null unique);
-create table t2 (id int(10) not null primary key,
-val int(10) not null);
+create table t2 (id int(10) not null primary key, val int(10) not null);
insert into t1 values (1),(2),(4);
insert into t2 values (1,1),(2,1),(3,1),(4,2);
select one.id, elt(two.val,'one','two') from t1 one, t2 two where two.id=one.id;