1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-13 21:42:58 +03:00

Merge polly.local:/tmp/20924/bug20294/my50-bug20294

into  polly.local:/tmp/20924/bug20294/my51-bug20294
This commit is contained in:
kaa@polly.local
2006-09-12 18:43:38 +04:00
13 changed files with 111 additions and 33 deletions

View File

@@ -128,3 +128,10 @@ f1 f2 if(f1, 40.0, 5.00)
0 0 5.00
1 1 40.00
drop table t1;
SELECT IF(1 != 0, 18446744073709551615, 1);
IF(1 != 0, 18446744073709551615, 1)
18446744073709551615
SELECT IFNULL(NULL, 18446744073709551615);
IFNULL(NULL, 18446744073709551615)
18446744073709551615
End of 4.1 tests