summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_set.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-08-24 18:20:27 +0200
committerunknown <serg@serg.mylan>2004-08-24 18:20:27 +0200
commit44a75553840b4ecb0be4e89eafb267d1d005dc72 (patch)
tree179713178fac20b06e086846212c3c30b0c68e63 /mysql-test/r/func_set.result
parenta49c12f5152791042eeecac19db9054ad845e3dd (diff)
downloadmariadb-git-44a75553840b4ecb0be4e89eafb267d1d005dc72.tar.gz
followup
Diffstat (limited to 'mysql-test/r/func_set.result')
-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;