3917 Sujatha Sivakumar 2012-07-25
Follow up patch for BUG#13961678. Fixing compilation warning given below.
"warning: integer constant is too large for 'long' type"
modified:
mysys/mf_iocache.c
3916 Annamalai Gurusami 2012-07-25 [merge]
Null merge from mysql-5.1 to mysql-5.5.
=== modified file 'mysys/mf_iocache.c'
--- a/mysys/mf_iocache.c 2012-07-24 10:56:16 +0000
+++ b/mysys/mf_iocache.c 2012-07-25 09:26:37 +0000
@@ -1532,7 +1532,7 @@ int _my_b_write(register IO_CACHE *info,
DBUG_EXECUTE_IF("simulate_huge_load_data_file",
{
- pos_in_file=5000000000;
+ pos_in_file=(my_off_t)(5000000000ULL);
});
if (pos_in_file+info->buffer_length > info->end_of_file)
{
No bundle (reason: useless for push emails).
| Thread |
|---|
| • bzr push into mysql-5.5 branch (sujatha.sivakumar:3916 to 3917) Bug#13961678 | Sujatha Sivakumar | 25 Jul |