summaryrefslogtreecommitdiff
path: root/storage/xtradb/srv/srv0srv.cc
Commit message (Collapse)AuthorAgeFilesLines
* 5.5 mergemariadb-10.0.15Sergei Golubchik2014-11-211-2/+2
|
* XtraDB 5.6.21-70.0Sergei Golubchik2014-11-201-0/+2
|
* 5.5 mergeSergei Golubchik2014-11-201-0/+8
|
* MDEV-6926: innodb_rows_updated is misleading on slavJan Lindström2014-10-261-1/+43
| | | | | | | | | | | | | | | | | | | | | Merged Facebook commit dd2d11be7aaf3be270e740fb95cbc4eacb52f4d7 authored by Rongrong Zhong from https://github.com/facebook/mysql-5.6 This fixes MySQL Bug #68220 innodb_rows_updated is misleading on slave http://bugs.mysql.com/bug.php?id=68220 Added innodb_system_rows_read/inserted/updated/deleted counters that are the equivalent of innodb_rows_* but that only account for changes made to system databases (mysql, information_schame and preformance_schema). These counters will be used on slaves to differentiated the updates made on system databases from those made on user databases. innodb_rows_* status counters are not updated when innodb_system_rows_* are updated. https://github.com/facebook/mysql-5.6/commit/dd2d11be7aaf3be270e740fb95cbc4eacb52f4d7
* MDEV-6930: Make innodb_max_dirty_pages_pct my.cnf variable a doubleJan Lindström2014-10-251-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Merged Facebook commit ecff018632c6db49bad73d9233c3cdc9f41430e9 authored by Steaphan Greene from https://github.com/facebook/mysql-5.6 This change is to fix: http://bugs.mysql.com/62534 This makes innodb_max_dirty_pages_pct a double with min,default,max values 0.001, 75, 99.999. This also makes innodb_max_dirty_pages_pct_lwm and adaptive_flushing_lwm doubles, as these sysvars are inter-dependent. Added more to the BUFFER POOL AND MEMORY section of SHOW INNODB STATUS: Percent pages dirty: X.X This is all n_dirty_pages / used_pages Percent all pages dirty: X.X This is all n_dirty_pages / all-pages Max dirty pages percent: X.X This is innodb_max_dirty_pages_pct Also changed all of buf from 2 to 3 digits of precision (%.2f -> %.3f).
* MDEV-6533 - MySQL Bug#72718 - CACHE_LINE_SIZE in innodb should be 128 on POWERSergey Vojtovich2014-10-031-0/+4
| | | | | This patch is suggested by Stewart Smith. Define CACHE_LINE_SIZE to 128 on POWER.
* Automatic merge from 5.5Michael Widenius2014-08-191-3/+10
| | | | Fixed 2 failing tests by replacing result files
* xtradb-5.6.19-67.0Sergei Golubchik2014-08-061-3/+11
|
* MDEV-6348: mariadb crash signal 11Jan Lindström2014-07-081-0/+4
| | | | | | | | Analysis: sync array output function, should make sure that all used pointers are valid before using them. Merge revision 4225 from lp:maria/5.5.
* xtradb 5.6.17-65.0Sergei Golubchik2014-05-071-3/+5
|
* MDEV-6184 10.0.11 mergeSergei Golubchik2014-05-061-3/+6
| | | | XtraDB 5.6.16-64.2
* Percona-Server-5.6.14-rel62.0 mergeSergei Golubchik2013-12-221-0/+3508
support ha_innodb.so as a dynamic plugin. * remove obsolete *,innodb_plugin.rdiff files * s/--plugin-load=/--plugin-load-add=/ * MYSQL_PLUGIN_IMPORT glob_hostname[] * use my_error instead of push_warning_printf(ER_DEFAULT) * don't use tdc_size and tc_size in a module update test cases (XtraDB is 5.6.14, InnoDB is 5.6.10) * copy new tests over * disable some tests for (old) InnoDB * delete XtraDB tests that no longer apply small compatibility changes: * s/HTON_EXTENDED_KEYS/HTON_SUPPORTS_EXTENDED_KEYS/ * revert unnecessary InnoDB changes to make it a bit closer to the upstream fix XtraDB to compile on Windows (both as a static and a dynamic plugin) disable XtraDB on Windows (deadlocks) and where no atomic ops are available (e.g. CentOS 5) storage/innobase/handler/ha_innodb.cc: revert few unnecessary changes to make it a bit closer to the original InnoDB storage/innobase/include/univ.i: correct the version to match what it was merged from