summaryrefslogtreecommitdiff
path: root/plugin/sql_errlog
Commit message (Collapse)AuthorAgeFilesLines
* Correct FSF addressiangilfillan2017-03-101-1/+1
|
* update plugins' maturity levelsSergei Golubchik2016-03-181-1/+1
|
* update plugins' maturity levels:Sergei Golubchik2014-03-191-1/+1
| | | | | | old plugins get STABLE newer plugins get GAMMA those that had bugs recently get BETA
* 5.5 merge and fixes for compiler/test errorsSergei Golubchik2013-09-185-322/+3
|\
| * MDEV-4472 Audit-plugin. Server-related part of the task.Alexey Botchkov2013-09-095-322/+3
| | | | | | | | | | | | | | | | | | 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'.
* | 5.5 mergeSergei Golubchik2013-07-171-0/+4
|\ \ | |/
| * MDEV-4685 Compile error on LFSSergei Golubchik2013-06-221-0/+4
| | | | | | | | fix the code to compile w/o perfomance schema
* | put status variables in the proper pluginname_ scopeSergei Golubchik2013-04-091-18/+0
|/ | | | | (but support the scopeless mysql style too). always output status/system variables in the correct lettercase
* MDEV-15 Log all sql errors.Alexey Botchkov2012-03-245-3/+341
| | | | | | | | | | | modified for MySQL 5.5. Logger service moved to the plugin/sql_errlog directory to be properly used later. plugin/sql_errlog/sql_errlog.c: Fixes for bugs #956427 (SQL_ERROR_LOG plugin produces bogus warnings about sql-error-log-size-limit value) and #956463 (Server crashes if SQL_ERROR_LOG fails to initialize) they're also MDEV-184 and MDEV-183 The sql_error_log_deinit() should be prepared for the logger_file to be NULL. The logger_file_size_limit upper limit wasn't properly set.
* MDEV-15 Log SQL errors.Alexey Botchkov2012-03-141-4/+15
| | | | | | | mysys/my_logger.c was moved to sql/sql_logger.c Logger service was rewritten with file functions instead of stream, so it can handle huge files.
* MDEV-15 Log all SQL errors.Alexey Botchkov2012-03-142-0/+163
Added the logger service that provides us with the rotating logs. The plugin SQL_ERROR_LOG added. It logs the errors using the 'logger service' for the rotating log files. the example record from the log: 2012-03-09 15:07:29 root[root] @ localhost [] ERROR 1146: Table 'test.xyz' doesn't exist : select * from test.xyz