1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Bug#45293 Supressed some warnings

This commit is contained in:
Bernt M. Johnsen
2009-06-23 14:32:14 +02:00
parent e2ac8c07bd
commit 2a5907a8fd
2 changed files with 8 additions and 8 deletions

View File

@ -18241,8 +18241,6 @@ END//
CALL sp70_n(-1e+40);
f1
-10000000000000000000000000000000000000000
Warnings:
Note 1265 Data truncated for column 'f1' at row 1
CALL sp70_n( -10000000000000000000000000000000000000000 );
f1
-10000000000000000000000000000000000000000
@ -18255,8 +18253,6 @@ END//
CALL sp71_nu(1.00e+40);
f1
10000000000000000000000000000000000000000
Warnings:
Note 1265 Data truncated for column 'f1' at row 1
CALL sp71_nu( 10000000000000000000000000000000000000000 );
f1
10000000000000000000000000000000000000000
@ -18269,8 +18265,6 @@ END//
CALL sp72_nuz(1.00e+40);
f1
0000000000000000000000010000000000000000000000000000000000000000
Warnings:
Note 1265 Data truncated for column 'f1' at row 1
CALL sp72_nuz( 10000000000000000000000000000000000000000 );
f1
0000000000000000000000010000000000000000000000000000000000000000
@ -18283,8 +18277,6 @@ END//
CALL sp73_n_z(1.00e+40);
f1
0000000000000000000000010000000000000000000000000000000000000000
Warnings:
Note 1265 Data truncated for column 'f1' at row 1
CALL sp73_n_z( 10000000000000000000000000000000000000000 );
f1
0000000000000000000000010000000000000000000000000000000000000000

View File

@ -22429,7 +22429,9 @@ BEGIN
END//
delimiter ;//
--disable_warnings
CALL sp70_n(-1e+40);
--enable_warnings
eval CALL sp70_n( $minus_40 );
@ -22445,7 +22447,9 @@ BEGIN
END//
delimiter ;//
--disable_warnings
CALL sp71_nu(1.00e+40);
--enable_warnings
eval CALL sp71_nu( $plus_40 );
@ -22461,7 +22465,9 @@ BEGIN
END//
delimiter ;//
--disable_warnings
CALL sp72_nuz(1.00e+40);
--enable_warnings
eval CALL sp72_nuz( $plus_40 );
@ -22477,7 +22483,9 @@ BEGIN
END//
delimiter ;//
--disable_warnings
CALL sp73_n_z(1.00e+40);
--enable_warnings
eval CALL sp73_n_z( $plus_40 );