summaryrefslogtreecommitdiff
path: root/mysql-test/r/select.result
diff options
context:
space:
mode:
authorSinisa@sinisa.nasamreza.org <>2002-10-11 21:49:10 +0300
committerSinisa@sinisa.nasamreza.org <>2002-10-11 21:49:10 +0300
commit97990887cb5b6fb6107ab123933b5ddc0f970633 (patch)
tree2d7062b28bee0edd940168f445301d0156f904cb /mysql-test/r/select.result
parent69dc5ef8f62347000c0bd241660bfdbe7e3dd142 (diff)
downloadmariadb-git-97990887cb5b6fb6107ab123933b5ddc0f970633.tar.gz
SCRUM task
Diffstat (limited to 'mysql-test/r/select.result')
-rw-r--r--mysql-test/r/select.result10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result
index fc918012d1f..c4fac8d8e7f 100644
--- a/mysql-test/r/select.result
+++ b/mysql-test/r/select.result
@@ -3266,3 +3266,13 @@ select wss_type from t1 where wss_type =102935229216544093;
wss_type
102935229216544093
drop table t1;
+select 1+2,"aaaa",3.13*2.0 into @a,@b,@c;
+select @a;
+@a
+3
+select @b;
+@b
+aaaa
+select @c;
+@c
+6.26