3986 Alexander Barkov 2012-07-06
Fixing debug_max compilation failures on some platforms:
comparison between signed and unsigned
modified:
sql/gcalc_tools.cc
3985 Jimmy Yang 2012-07-06
Undo checkin of revision-id:
bill.qu@stripped
It is causing many InnoDB online alter test failure
removed:
mysql-test/suite/innodb/r/innodb-bug14219515.result
mysql-test/suite/innodb/t/innodb-bug14219515.test
modified:
storage/innobase/handler/handler0alter.cc
=== modified file 'sql/gcalc_tools.cc'
--- a/sql/gcalc_tools.cc 2012-07-05 08:42:00 +0000
+++ b/sql/gcalc_tools.cc 2012-07-06 06:40:40 +0000
@@ -1297,7 +1297,7 @@ int Gcalc_result_receiver::reorder_chunk
sorted+= chunk->length;
}
// Make sure all chunks were put
- DBUG_ASSERT(sorted - tmp.ptr() == buffer.length());
+ DBUG_ASSERT(sorted - tmp.ptr() == (size_t) buffer.length());
// Get all data from tmp and unlink tmp from its buffer.
buffer.takeover(tmp);
DBUG_RETURN(0);
No bundle (reason: useless for push emails).
| Thread |
|---|
| • bzr push into mysql-5.6 branch (alexander.barkov:3985 to 3986) | Alexander Barkov | 6 Jul |