diff options
author | msvensson@neptunus.(none) <> | 2006-03-22 16:47:45 +0100 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-03-22 16:47:45 +0100 |
commit | bbc40518261da9dd8efdd2bf6d35706f478388e2 (patch) | |
tree | f6eb91ecf92f57a94441962e001c3e6478f04ff6 /mysql-test/t/variables.test | |
parent | 451a7129bb728e62dd266d3298cdca081471893a (diff) | |
download | mariadb-git-bbc40518261da9dd8efdd2bf6d35706f478388e2.tar.gz |
Fix windows results using "replace_result"
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index 8df1d34ea5e..8d8dc7896df 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -20,6 +20,8 @@ select @test, @`test`, @TEST, @`TEST`, @"teSt"; set @select=2,@t5=1.23456; select @`select`,@not_used; set @test_int=10,@test_double=1e-10,@test_string="abcdeghi",@test_string2="abcdefghij",@select=NULL; +# Expected result "1e-10", windows returns "1e-010" +--replace_result 1e-010 1e-10 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; |