An error occurred fetching the project authors.
- 30 Jan, 2007 1 commit
-
-
jani@ua141d10.elisa.omakaista.fi authored
Move get_thread_lib to mysys/my_pthread.c Set 'thr_client_alarm' to signal number used by thr_alarm to give alarms
-
- 22 Jan, 2007 1 commit
-
-
Fix to check library in use during runtime. Fix for Bug#16995, "idle connections not being killed due to timeout when NPTL is used".
-
- 12 Jan, 2006 1 commit
-
-
jani@ua141d10.elisa.omakaista.fi authored
Changes to Netware specific mysqld_safe.c
-
- 14 Sep, 2005 1 commit
-
-
ingo@mysql.com authored
Enlarged the counter variables to ulonglong.
-
- 06 Sep, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 28 Aug, 2005 1 commit
-
-
paul@frost.snake.net authored
Reorder out-of-order status variables.
-
- 24 Aug, 2005 1 commit
-
-
- 18 Aug, 2005 1 commit
-
-
against a later version of libc.
-
- 03 Mar, 2005 2 commits
-
-
serg@serg.mylan authored
-
serg@serg.mylan authored
-
- 25 Jan, 2005 1 commit
-
-
marko@hundin.mysql.fi authored
-
- 12 Jan, 2005 1 commit
-
-
serg@serg.mylan authored
-
- 24 Dec, 2004 1 commit
-
-
ram@gw.mysql.r18.ru authored
-
- 01 Nov, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
Describe innodb_max_purge_lag Improve description of innodb_table_locks
-
- 27 Oct, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
-
- 20 Oct, 2004 2 commits
-
-
monty@mysql.com authored
-
monty@mysql.com authored
Rename innodb_table_locks_old_behavior -> innodb_table_locks Set innodb_table_locks to off by default to get same behaviour as in MySQL 4.0.20 (This means that Innodb ignore table locks by default, which makes it easier to combine MyISAM and InnoDB to simulate a transaction)
-
- 17 Oct, 2004 1 commit
-
-
dellis@goetia.(none) authored
BUG #5731 key_buffer_size not properly restricted to 4GB; use UINT_MAX32 for clarity.
-
- 13 Oct, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
innodb_table_locks_old_behavior: do not acquire an InnoDB table lock for LOCK TABLES, as in mysql-4.0.18 and earlier.
-
- 03 Oct, 2004 1 commit
-
-
dellis@goetia.(none) authored
BUG #5731 Restrict key_buffer_size to 4GB on 64 bit platforms
-
- 30 Sep, 2004 1 commit
-
-
joerg@mysql.com authored
-
- 24 Sep, 2004 1 commit
-
-
guilhem@mysql.com authored
we force the message to the error log, and we make it more informative; we treat EDQUOT like ENOSPC.
-
- 03 Sep, 2004 1 commit
-
-
ram@gw.mysql.r18.ru authored
-
- 02 Sep, 2004 1 commit
-
-
miguel@hegel.txg.br authored
-
- 01 Sep, 2004 1 commit
-
-
miguel@hegel.txg.br authored
-
- 31 Aug, 2004 1 commit
-
-
ram@gw.mysql.r18.ru authored
used in the handle_options() function (instead of using additional handle_option() parameter). The default value of the my_getopt_error_reporter is default_reporter(). One can set it to other functions if case of need.
-
- 27 Aug, 2004 1 commit
-
-
monty@mysql.com authored
Initialize LOG_error_log before get_options to not use an uninitalized mutex in case of an error from handle_options()
-
- 23 Aug, 2004 1 commit
-
-
pem@mysql.com authored
-
- 19 Aug, 2004 1 commit
-
-
rburnett@build.mysql.com authored
mysqld.cc: Changed LOGLEVEL enum to loglevel mysql_priv.h, log.cc: Changed LOGLEVEL to loglevel. Removed startup_ from some of the DBUG_ENTER macros. Removed the print_msg_to_log function as it was unused. my_getopt.c, my_getopt.h: Renamed LOGLEVEL to loglevel to match coding standards
-
- 18 Aug, 2004 1 commit
-
-
rburnett@build.mysql.com authored
mysqld.cc: Changed option_error_reporter to match new function header that includes LOGLEVEL enum mysql_priv.h: Removed the MY_ERROR style bitmask. Changed function headers to use new LOGLEVEL enum log.cc: Changed print_buffer_to_log to print_buffer_to_file. Remove the timestamp bool and now all log entries written to stderr are timestamped. Removed some unused commented code. changed to use the new LOGLEVEL enum. my_getopt.c: Changed functions to use the new LOGLEVEL enum and changed the included error reporter to be default_reporter. This reporter is used in handle_options if a reporter is not given my_getopt.h: changed typedefs to use better naming convention. Moved error bitmask into the LOGLEVEL enum and included it here.
-
- 17 Aug, 2004 1 commit
-
-
heikki@hundin.mysql.fi authored
Changes for NetWare to exit the InnoDB gracefully instead of crashing the server (patch by PRam@novell.com, polished a little by Heikki Tuuri) mysqld.cc, ha_innodb.cc: Changes for NetWare to exit the InnoDB gracefully instead of crashing the server (patch by PRam@novell.com, polished a little by Heikki Tuuri)
-
- 14 Aug, 2004 1 commit
-
-
rburnett@build.mysql.com authored
Added declarations for print_msg_to_log and vprint_msg_to_log. sql_print_error are simple functions that wrap calls to print_msg_to_log. Define the different error types with MY_ERROR_TYPE, MY_WARNING_TYPE, and MY_INFORMATION_TYPE gen_lex_hash.cc: Added NULL error reporting parameter to handle_options log.cc: Add print_msg_to_log, print_buffer_to_log, and vprint_msg_to_log. Print_msg_to_log will write the message to the windows event log if on NT. We now have error, warning, and information versions of sql_print_xxxx. T his is a variation of a similar changeset WAX did. mysqld.cc: Added option_error_reporter callback function and pass that into handle_options mysql.cc: Added NULL as error reporter arg to the end of handle_options Many files: Added NULL error reporter parameter as the last paramter to handle_options my_getopt.c: Added second function pointer to server as an error reporting callback. Added local function report_option_error that will either write the error to stderr or to the error reporting callback. changed all calls in handle_options from fprintf(stderr, ... ) to report_option_error my_getopt.h: Changed declaration of handle_options to use typedefs for the two function pointers. added second function pointer to server as an error reporting callback mysqld.dsp: Added custom build step for compiling message file and added message resource file (output of mc)
-
- 13 Aug, 2004 1 commit
-
-
guilhem@mysql.com authored
Adding a compilation define so that on recent Darwin mysqld does not react to SIGHUP and SIGQUIT: this fixes a rpl000001 problem on our Powermac G5 machine (popping after an upgrade from 10.3.4 to 10.3.5) and is expected to fix BUG#2030 "relay bin log on slave resets multiple times a second" (i.e. under some Mac OS X Panther versions, mysqld receives many SIGHUP and SIGQUIT). So this fix is more a problem-hider than a real understanding of why mysqld receives so many signals. Note that we saw other problems on this OS where mysqld reacts to Ctrl-Z but apparently only once, where using SSL seems to make the problem more frequent...
-
- 06 Aug, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
InnoDB: Implement tmpfile() differently on Windows (Bug #3998)
-
- 04 Aug, 2004 1 commit
-
-
tim@sand.box authored
-
- 10 Jun, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 01 Jun, 2004 1 commit
-
-
will disable warnings, --log-warnings will increment warning level by one, or the level can be given as an optional argument. Default level is 1. Changed aborted connection warning to be logged only if the level is > 1.
-
- 26 May, 2004 1 commit
-
-
monty@mysql.com authored
-
- 25 May, 2004 1 commit
-
-
monty@mysql.com authored
-
- 24 May, 2004 1 commit
-
-
monty@mysql.com authored
Update of VC++ project files.
-