summaryrefslogtreecommitdiff
path: root/mysql-test/t/archive-big.test
Commit message (Collapse)AuthorAgeFilesLines
* Created suites for heap, archive and csv.Michael Widenius2012-04-041-25/+0
| | | | | | | | Moved test from main suite to the new suites. Move tests from maria/t and maria/r to maria mysql-test/mysql-test-run.pl: Added support for the new suites
* BUG#15787 - MySQL crashes when archive table exceeds 2GBunknown2007-06-241-0/+25
Max compressed file size was calculated incorretly causing server crash on INSERT. With this patch we use proper max file size provided by zlib. Affects 5.0 only. sql/ha_archive.cc: When calculating max compressed file size, use the real offset size that is provided by zlib, instead of sizeof(z_off_t), which may be different from actual offset size. When we're about to write and the data file is almost full flush gzio buffer to get accurate real file size. mysql-test/r/archive-big.result: New BitKeeper file ``mysql-test/r/archive-big.result'' mysql-test/t/archive-big.test: New BitKeeper file ``mysql-test/t/archive-big.test''