1
0
mirror of https://github.com/MariaDB/server.git synced 2025-10-27 05:56:07 +03:00

Merge polly.(none):/home/kaa/src/maint/bug26788/my51-bug26788

into  polly.(none):/home/kaa/src/maint/mysql-5.1-maint
This commit is contained in:
kaa@polly.(none)
2007-12-02 14:14:42 +03:00
3 changed files with 9 additions and 1 deletions

View File

@@ -50,6 +50,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;