Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | perfschema memory related instrumentation changes | Sergei Golubchik | 2020-03-10 | 1 | -1/+2 |
| | |||||
* | Merge 10.2 into 10.3 | Marko Mäkelä | 2019-05-14 | 1 | -1/+1 |
|\ | |||||
| * | Merge 10.1 into 10.2 | Marko Mäkelä | 2019-05-13 | 1 | -1/+1 |
| |\ | |||||
| | * | Update FSF address | Michal Schorm | 2019-05-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit is based on the work of Michal Schorm, rebased on the earliest MariaDB version. Th command line used to generate this diff was: find ./ -type f \ -exec sed -i -e 's/Foundation, Inc., 59 Temple Place, Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \ -exec sed -i -e 's/Foundation, Inc. 59 Temple Place.* Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \ -exec sed -i -e 's/MA.*.....-1307.*USA/MA 02110-1335 USA/g' {} \; \ -exec sed -i -e 's/Foundation, Inc., 59 Temple/Foundation, Inc., 51 Franklin/g' {} \; \ -exec sed -i -e 's/Place, Suite 330, Boston, MA.*02111-1307.*USA/Street, Fifth Floor, Boston, MA 02110-1335 USA/g' {} \; \ -exec sed -i -e 's/MA.*.....-1307/MA 02110-1335/g' {} \; | ||||
* | | | Optimize performance schema likely/unlikely | Michael Widenius | 2018-05-07 | 1 | -1/+1 |
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Performance schema likely/unlikely assume that performance schema is enabled by default, which causes a performance degradation for default installations that doesn't have performance schema enabled. Fixed by changing the likely/unlikely in PS to assume it's not enabled. This can be changed by compiling with -DPSI_ON_BY_DEFAULT Other changes: - Added psi_likely/psi_unlikely that is depending on PSI_ON_BY_DEFAULT. psi_likely() is assumed to be true if PS is enabled. - Added likely/unlikely to some PS interface code. - Moved pfs_enabled to mysys (was initialized but not used before) - Added "if (pfs_likely(pfs_enabled))" around calls to PS to avoid an extra call if PS is not enabled. - Moved checking flag_global_instrumention before other flags to speed up the case when PS is not enabled. | ||||
* | | Fix and reenable Windows compiler warning C4800 (size_t conversion). | Vladislav Vaintroub | 2018-01-26 | 1 | -2/+2 |
| | | |||||
* | | Correct FSF address | iangilfillan | 2017-03-10 | 1 | -1/+1 |
|/ | |||||
* | MDEV-9106 Audit plugin compiled with MariaDB can't install on MySQL 5.7. | Alexey Botchkov | 2016-01-12 | 1 | -0/+2 |
| | | | | | The audit API was seriously changed in MySQL 5.7. so we had to adapt the plugin's code to that. | ||||
* | MDEV-6124 Audit plugin fails with the Percona-Server 5.6. | Alexey Botchkov | 2014-04-17 | 1 | -8/+16 |
| | | | | | | Some lines of code in file_logger.c were lost while moving to the general MariaDB tree. Adding them. | ||||
* | MDEV-5613 m_string.h exports generic function names without a namespace ↵ | Sergei Golubchik | 2014-02-17 | 1 | -0/+1 |
| | | | | | | prefix, like str2int don't include m_string. in my_valgrind.h | ||||
* | MDEV-4472 Audit-plugin. Server-related part of the task. | Alexey Botchkov | 2013-09-09 | 1 | -0/+223 |
file_logger became the service. Data like query_id now are sent to the audit plugin. Fix for MDEV-4770 ported from 10.0. Fix added for the read_maria_plugin_info(). Log rotation can be disabled with 'set rotations=0'. |