diff options
author | unknown <wax@mysql.com> | 2004-09-16 00:50:05 +0600 |
---|---|---|
committer | unknown <wax@mysql.com> | 2004-09-16 00:50:05 +0600 |
commit | 931f6da62289ae841e0ed599a787bb3c8569adc3 (patch) | |
tree | 31bb48f00306602e2a0882f544cdf1fe365e94b7 /mysql-test/t/variables.test | |
parent | 1460e454d066c928de8f95870c72a2515d8bbc79 (diff) | |
parent | 7d94788c1ad489f57f339066396259941e05d577 (diff) | |
download | mariadb-git-931f6da62289ae841e0ed599a787bb3c8569adc3.tar.gz |
Merge mysql.com:/home/wax/mysql/mysql-4.1
into mysql.com:/home/wax/mysql/mysql-4.1mysqltest
client/mysqltest.c:
Auto merged
mysql-test/Makefile.am:
Auto merged
mysql-test/r/fulltext.result:
Auto merged
mysql-test/r/type_float.result:
Auto merged
mysql-test/t/innodb.test:
Auto merged
mysql-test/t/type_float.test:
Auto merged
mysql-test/t/variables.test:
Auto merged
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index a480ecb570a..9264a965374 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -8,6 +8,7 @@ drop table if exists t1,t2; set @`test`=1,@TEST=3,@select=2,@t5=1.23456; select @test,@`select`,@TEST,@not_used; set @test_int=10,@test_double=1e-10,@test_string="abcdeghi",@test_string2="abcdefghij",@select=NULL; +--replace_result e-0 e- e+0 e+ select @test_int,@test_double,@test_string,@test_string2,@select; set @test_int="hello",@test_double="hello",@test_string="hello",@test_string2="hello"; select @test_int,@test_double,@test_string,@test_string2; |