summaryrefslogtreecommitdiff
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Mergekent@mysql.com2005-07-061-5/+5
|\
| * Makefile.am:kent@mysql.com2005-07-051-3/+5
| | | | | | | | | | Added -I$(top_builddir)/include for searching generated header files, when builddir != srcdir
* | WL#2286 - Compile MySQL w/YASSL supportsvoj@mysql.com2005-06-151-1/+6
| | | | | | | | | | Fix for link failures on boxes with non-gnu compiler. Fix for compilation failure on hpux11.
* | WL#2286 - Compile MySQL w/YASSL supportsvoj@mysql.com2005-05-201-2/+3
| | | | | | | | compilation fixes
* | Automerge / manual check of the fixes for NPTL configuration (bug#2173, ↵joerg@mysql.com2005-04-261-1/+1
|\ \ | |/ | | | | | | | | bug#5871, and bug#9497). Post-merge fix will follow.
| * Step 2 of the switch to support configuration with NPTL:joerg@mysql.com2005-04-201-1/+1
| | | | | | | | | | | | Define a new CPP symbol that the target OS is Linux, and use it where only the OS matters and not the threads Library. Until now, 'HAVE_LINUXTHREADS' was used to indicate "Target is Linux" in many places. When we support configuration with NPTL but no Linuxthreads, this misuse must cease.
* | Enable IM in the binary distribution and fix Bug #9513 (mysql.server script ↵petr@mysql.com2005-04-041-3/+3
| | | | | | | | | | | | from the binary distibution doesn't work out of the box)
* | Removed support for RAID, mit-threads, and MySQL FS (really, if someone ↵brian@zim.(none)2005-03-161-1/+1
| | | | | | | | wants this feature look at a web-dav hookup).
* | Remove compiler warnings and remove not used variablesmonty@mysql.com2005-02-251-6/+3
| | | | | | | | (Found during build process)
* | small Makefile.am cleanupserg@serg.mylan2005-01-281-1/+1
| | | | | | | | | | clean: targets removed generated *.h files moved to include/
* | WL#1051, more maintanable error messages.anjuta@arthur.local2004-12-131-1/+2
| |
* | Changing the default of libmysqlclient : it's now NO reconnection.guilhem@mysql.com2004-12-091-0/+3
|/ | | | | | | All our programs which use mysql_real_connect() and mysql_connect() are updated accordingly, though I have deliberately made mysqlimport not reconnect anymore (already true for mysqldump >= 4.1.8). All Connector devs have been warned about the change I'm doing here - which was agreed with Monty, and fixes BUG#2555.
* Merge with 4.0monty@mysql.com2004-09-011-1/+1
|\
| * Added global my_getopt_error_reporter function pointer which is ram@gw.mysql.r18.ru2004-08-311-1/+1
| | | | | | | | | | | | | | 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.
* | mergedserg@serg.mylan2004-08-261-1/+1
|\ \ | |/
| * mysql_priv.h:rburnett@build.mysql.com2004-08-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* | Order of libs is important when building an optimized library: put ZLIB lastkonstantin@mysql.com2004-07-271-2/+2
| | | | | | | | in the list.
* | WL#1518 "make bundled zlib usable for unix builds", post review fixes:konstantin@mysql.com2004-07-271-1/+1
| | | | | | | | | | | | | | - comment for AC_DEFINE(HAVE_COMPRESS) fixed - build convenience library from zlib: we need to compile it into both libmysqlclient.a and libmysqlclient.so - --with-zlib-dir=bundled configure option
* | WL#1518, "make bundled zlib usable for unix builds": konstantin@mysql.com2004-07-241-2/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | required autotools macro written and deployed in all apropriate Makefile.ams. Use cases checked: - linux, standard location of zlib, no ndb - linux, standard locatoin of zlib, with ndb - linux, non-standard location of zlib, no ndb - hpux11, use of bundled zlib, no ndb The only non-checked case is non-standard location of zlib (or use of bundled zlib) + ndb. I wasn't able to check it as ndb/ just won't compile on beasts like AIX52 or HPUX11, where such a check is possible. It didn't compile there before as these systems dont't have installed zlib, so nothing got broken ;)
* | API change: mysql_shutdown() now needs a 2nd parameter, the shutdown level.guilhem@mysql.com2004-06-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Server will however still accept shutdown without specified level; so that old mysqladmin can still shut server down. I would like your comments on the names of shutdown level which I chose. You are welcome to propose better names. Please however check WL#709 before. Reason for the names I propose is to be accurate, thus leaving possibility for other levels which we may imagine in the future; that's why I have rejected names like "fast", "smart", "graceful" so far. My position is that WAIT_ALL_BUFFERS or WAIT_CRITICAL_BUFFERS say what the shutdown does, whereas for "smart", "fast" you need to remember what it does. This should be pushed in 4.1.3 but only after your comments.
* | merge with 4.0 to get windows fixesmonty@mysql.com2004-05-271-1/+1
|\ \ | |/
| * Fix to make Windows compilation smootherhf@deer.(none)2004-05-261-1/+1
| |
* | merge with 4.0 to get Netware patches and fixes for libmysqld.dllmonty@mysql.com2004-05-251-0/+15
|\ \ | |/
| * Added patches from Novellmonty@mysql.com2004-05-251-0/+15
| |
* | SCRUMhf@deer.(none)2003-09-191-2/+2
| | | | | | | | | | | | | | embedded library hash_insert renamed to my_hash_insert to avoid name intersection with another libraries is there better idea?
* | consistency fix - all help texts for command-line options should end with a dot.serg@serg.mylan2003-06-131-7/+7
| |
* | system_charset_info has been moved to /sql directoryroot@home.(none)2003-03-161-11/+13
| | | | | | | | and isn't used in libraries any longer
* | Merge with 4.0.8monty@mashka.mysql.fi2003-01-061-1/+1
|\ \ | |/
| * A lot of portability fixes.monty@mashka.mysql.fi2003-01-051-1/+1
| | | | | | | | Added rename table for BDB. This fixes a bug in ALTER TABLE with BDB tables.
* | removed redundant -I include-dirsserg@serg.mysql.com2002-11-261-2/+1
| |
* | mergedserg@serg.mysql.com2002-10-141-11/+13
|\ \ | |/ |/|
| * Merge with 4.0.3monty@narttu.mysql.fi2002-08-301-11/+13
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Some simple optimzations, more comments and indentation changes. Add ` around database in 'use database' in binary log. Moved max_error_count and max_warning_count to variables struct. Removed SHOW_WARNS_COUNT and SHOW_ERRORS_COUNT calls. Changed string functions to use character set of first string argument as default return characterset (Each string function can change the above assumption if needed)
| | * merge with 4.0monty@hundin.mysql.fi2002-06-031-95/+78
| | |\
| | * | Hash now supports several charsetsbar@gw.udmsearch.izhnet.ru2002-03-141-2/+4
| | | |
| | * | New ctype functions/macros to support many charsets at a timebar@gw.udmsearch.izhnet.ru2002-03-121-9/+9
| | | |
* | | | - Applied required modifications for automake 1.5lenz@mysql.com2002-10-011-10/+0
|/ / / | | | | | | | | | | | | - some additional small fixes - added "depcomp" for automake 1.5
* | | Big code cleanup/review before 4.0.2 release.monty@mashka.mysql.fi2002-06-111-73/+81
| |/ |/| | | | | | | (All commit emails since 4.0.1 checked) This had to be done now, before the 4.1 tree changes to much, to make it easy to propagate bug fixes to the 4.1 tree.
* | Added useful exit error code for programs using my_getopt in casejani@hynda.(none)2002-05-291-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | of an error in option handling. This can sometimes be useful in scripts. Changed some exit code names and corresponding numbers. Fixed a bug in mysqld.cc, in replication related options. Added a global flag in my_getopt, which can be set by any program that is using my_getopt, which tells whether the client should print the error message itself, or whether my_getopt should do it. The default is that my_getopt will print the error messages.
* | Changed ft_dump, ft_eval, ft_test1, mi_test1, myisampack, gen_lex_hash,jani@rhols221.arenanet.fi2002-05-241-89/+75
| | | | | | | | | | | | | | | | | | | | | | mysqlmanager from using GNU getopt to use my_getopt. Changed some files that just included old getopt.h to include my_getopt.h now. Fixed a bug in my_print_help() in my_getopt.c. Made better documentation for option -G in mysql client.
* | Removed compiler warningsmonty@hundin.mysql.fi2002-05-221-3/+3
|/
* post-merge fixes, including slave-skip-errors backportsasha@mysql.sashanet.com2002-01-221-1/+1
| | | | | | | fixed too quick timeout in mysql-test-run which caused a race with the new server getting started before the old one completely finished shutdown. This should fix the pid warning we've been getting as well as inconsistent results when running tests with the manager
* Lots of portability fixes.monty@hundin.mysql.fi2001-12-171-5/+4
| | | | | Fixed shutdown on HPUX. Fixed bug in query cache.
* Update copyrightmonty@hundin.mysql.fi2001-12-061-25/+16
| | | | Fixed memory leak on shutdown (Affects the embedded version & MyODBC)
* Extended manual section about MySQL statesmonty@hundin.mysql.fi2001-11-281-2/+2
|
* New improved IO_CACHEmonty@bitch.mysql.fi2001-11-281-1/+1
|
* Fixed fulltext after merge from 3.23.45monty@hundin.mysql.fi2001-11-221-1/+1
| | | | First (incomplete) version of transaction and as3ap tests.
* Merge work:/home/bk/mysql-4.0sasha@mysql.sashanet.com2001-11-071-1/+32
|\ | | | | | | into mysql.sashanet.com:/home/sasha/src/bk/mysql-4.0
| * manager clean-up ( added pid-file and kill in mysql-test-run when things go ↵sasha@mysql.sashanet.com2001-11-071-1/+32
| | | | | | | | | | | | | | wrong) fixes for IO_CACHE need to pull Monty's fixes - this is not final, will not be pushed
* | Portability fix.monty@hundin.mysql.fi2001-11-071-2/+2
|/ | | | Fixed linking problem with InnoDB.
* 64-bit portability fixes in network I/Osasha@mysql.sashanet.com2001-10-131-33/+54
| | | | | use $MAX_TABLES mysqltest variable to make join test portable make test now works with the manager on IA64 Linux