summaryrefslogtreecommitdiff
path: root/libmysql
Commit message (Collapse)AuthorAgeFilesLines
* Merge with 3.23monty@mashka.mysql.fi2003-01-161-0/+2
|\
| * - fixes to properly make a "make distclean" (some files were not removed)lenz@mysql.com2002-12-271-0/+2
| | | | | | | | (There are probably some more to fix)
* | Added functions required by MySQLCCmiguel@light.2003-01-111-0/+6
| |
* | Added support for max_allowed_packet in option files read by mysql_option()monty@mashka.mysql.fi2003-01-041-4/+10
| | | | | | | | | | | | | | Extended max_allowed_packet for clients to 1G Fixed bug in sending compressed rows >= 16M Fix bug in skiping too long packets from clients. Added checking of wrong command number sent by client.
* | Merge with 3.23monty@mashka.mysql.fi2002-12-111-2/+9
|\ \ | |/
| * Added back -max to server name if we are using InnoDB.monty@mashka.mysql.fi2002-12-111-2/+2
| |
| * Merge work:/home/bk/mysql into serg.mysql.com:/usr/home/serg/Abk/mysqlserg@serg.mysql.com2002-12-051-2/+9
| |\
| | * better fix for read_rows, same for read_one_rowserg@serg.mysql.com2002-12-051-2/+9
| | |
| * | - Portability fixes for HP compiler on HPUX11 (backport from 4.0 tree)lenz@mysql.com2002-12-041-1/+1
| |/ | | | | | | - sql_analyse.cc: Fixed bug in decimal handling
* | new client error added: CR_MALFORMED_PACKETserg@serg.mysql.com2002-12-042-5/+8
| |
* | mergedserg@serg.mysql.com2002-12-041-2/+10
|\ \ | |/
| * protect from [heap] buffer overrrun by malicious serverserg@serg.mysql.com2002-12-041-2/+10
| |
* | Small improvement to alloc_rootmonty@mashka.mysql.fi2002-11-161-0/+1
| | | | | | | | | | | | | | | | | | Add support for LIMIT # OFFSET # Changed lock handling: Now all locks should be stored in TABLE_LIST instead of passed to functions. Don't call query_cache_invalidate() twice in some cases mysql_change_user() now clears states to be equal to close + connect. Fixed a bug with multi-table-update and multi-table-delete when used with LOCK TABLES Fixed a bug with replicate-do and UPDATE
* | Portability fixes for HP compiler and HPUX11monty@hundin.mysql.fi2002-11-091-1/+1
| |
* | Error code for ssl connectiongluh@gluh.(none)2002-11-052-8/+14
| | | | | | | | | | | | Fix bug when server hang(with SSL, with modified libmysql) Add options master-ssl-capath and master-ssl-cipher Add some error checking(SSL)
* | - replaced all occurences of HPUX with HPUX10 (to be prepared for eventuallenz@mysql.com2002-10-241-1/+1
| | | | | | | | differences in HPUX11)
* | Updated VC++ project files for 4.0.4monty@mashka.mysql.fi2002-09-241-4/+1
| | | | | | | | | | | | Only write short usage if one starts mysqldump without any options Added query cache on windows Added error message if one can't read privilege tables
* | Portability fixes.monty@mashka.mysql.fi2002-09-111-20/+24
| | | | | | | | | | | | | | Improve mysql-test to be more robust. Fix that GRANT doesn't delete SSL options Change innobase_flush_log_at_trx_commit to uint. Don't rotate logs if we read a rotate log entry from the master.
* | Some trivial optimzationsmonty@mashka.mysql.fi2002-09-031-2/+1
| | | | | | | | | | | | Check if AND/OR expression can be NULL; Fixed bug in GROUP BY and-or-expression where expression could be NULL Bug fix for SHOW OPEN TABLES when user didn't have privilege to access all open tables. Better fix for ALTER TABLE on BDB tables.
* | Don't require call to mysql_ssl_set() to use ssl.monty@mashka.mysql.fi2002-08-251-7/+16
| |
* | Give better error from reconnect()monty@mashka.mysql.fi2002-08-241-11/+18
| | | | | | | | Fixed hang in start_slave_threads() when thread dies quickly.
* | Use our version of RWLOCKS on UNIXWARE 7monty@hundin.mysql.fi2002-08-211-19/+37
| | | | | | | | | | | | | | | | More DBUG info for replication Better error messages from replication Fixed bug in replication code when connecting to 'localhost' (time was not released properly) Block ALARM signal on Linux for signal handler thread (Fixes problem with running mysqld with --debug) Removed warning when setting an AUTO_INCREMENT field to NULL
* | Fixed timing problem with rpl000001 replication test.monty@hundin.mysql.fi2002-08-181-5/+6
| | | | | | | | | | | | | | Fixed configure problems with HPUX and openbsd SHOW SLAVE STATUS returns empty set if slave is not initialized SHOW MASTER STATUS returns empty set if binary logging is not enabled. Fixed shutdown problem on Solaris.
* | merge with 3.23.52monty@hundin.mysql.fi2002-08-121-1/+1
|\ \ | |/
| * Fixed problem with BIGINT and shutdown on AIXmonty@hundin.mysql.fi2002-08-121-1/+1
| | | | | | | | | | | | Moved IF(test,column,NULL) code to 4.0 Changed mysys_priv.h to include my_pthread.h or my_no_pthread.h. Removed some CR's in os2 files.
* | Changed IF(expr, column, NULL) to take type from columnmonty@hundin.mysql.fi2002-08-121-1/+0
| | | | | | | | | | Fixed some windows portability problems and removed some compiler warnings Cleaned up QUOTE() function and fixed bug in \0 and \Z handling.
* | Fix for SSL and new my_getoptmonty@hundin.mysql.fi2002-08-091-1/+4
| | | | | | | | | | Fix for syntax error bug in SET TRANSACTION ISOLATION
* | Added nety_retry_count as a changeable variablemonty@hundin.mysql.fi2002-08-081-0/+1
| | | | | | | | | | Make safe_mysqld a symlink to mysqld_safe in binary distribution Fixed problem with CTRL-C when using mysqld --bootstrap
* | Fix after mergemonty@hundin.mysql.fi2002-08-081-0/+1
| | | | | | | | Updated WEEK() and DATE information in the manual.
* | merge with 3.23.52monty@hundin.mysql.fi2002-08-082-4/+7
|\ \ | |/
| * Fixed problem with make distcheckmonty@hundin.mysql.fi2002-08-062-3/+8
| | | | | | | | Fixed bug in automatic repair of MyISAM tables where table cache was not locked properly
* | Lots of code fixes to the replication code (especially the binary logging ↵monty@mashka.mysql.fi2002-08-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and index log file handling) Fixed bugs in my last changeset that made MySQL hard to compile. Added mutex around some data that could cause table cache corruptions when using OPTIMIZE TABLE / REPAIR TABLE or automatic repair of MyISAM tables. Added mutex around some data in the slave start/stop code that could cause THD linked list corruptions Extended my_chsize() to allow one to specify a filler character. Extend vio_blocking to return the old state (This made some usage of this function much simpler) Added testing for some functions that they caller have got the required mutexes before calling the function. Use setrlimit() to ensure that we can write core file if one specifies --core-file. Added --slave-compressed-protocol Made 2 the minimum length for ft_min_word_len Added variables foreign_key_checks & unique_checks. Less logging from replication code (if not started with --log-warnings) Changed that SHOW INNODB STATUS requre the SUPER privilege More DBUG statements and a lot of new code comments
* | New SET syntax & system variables.monty@mashka.mysql.fi2002-07-234-835/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | Made a some new buffers thread specific and changeable. Resize of key_buffer. AUTO_COMMIT -> AUTOCOMMIT Fixed mutex bug in DROP DATABASE Fixed bug when using auto_increment as second part of a key where first part could include NULL. Split handler->extra() to extra() and extra_opt() to be able to support thread specific buffers. Don't write message to error log when slave reconnects becasue of timeout. Fixed possible update problem when using DELETE/UPDATE on small tables (In some cases we used index even if table scanning would be better) A lot of minior code cleanups
* | Indentation cleanup & new commentsmonty@hundin.mysql.fi2002-06-281-2/+2
| |
* | Removed mysql_ssl_clear() monty@hundin.mysql.fi2002-06-272-4/+4
| | | | | | | | | | | | | | Added statistics information for alarms (for bug tracking) Don't store "incomplete" in the xxx.cfg file if we are not using --restart. (Crash-me) Enlarged STACK_BUF_ALLOC becasue of failed crash-me test Aded new script mysql_tableinfo to make a system directory.
* | Big code cleanup/review before 4.0.2 release.monty@mashka.mysql.fi2002-06-112-140/+160
| | | | | | | | | | (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.
* | merge with 3.23monty@hundin.mysql.fi2002-06-021-0/+5
|\ \ | |/
| * Portability fixes for SCO and HPUXmonty@hundin.mysql.fi2002-05-311-0/+5
| | | | | | | | | | Change TRUNCATE(number) to truncate towards zero for negative numbers Fix NULL handling for DESCRIBE table_name
* | Removed GNU getopt from MySQL distribution (replaced by my_getopt)jani@hynda.(none)2002-05-221-1/+1
| |
* | merge with 3.23.51monty@hundin.mysql.fi2002-05-162-14/+3
|\ \ | |/
| * New my_gethostbyname_r() handlingmonty@hundin.mysql.fi2002-05-162-14/+3
| | | | | | | | | | Changed some status variable names Fix bug in GRANT ... PASSWORD string
| * SHOW VARIABLES LIKE ... are now case insensitivemonty@tik.mysql.fi2002-04-181-1/+1
| | | | | | | | | | | | Fixed stack overflow checking with crash-me with gcc 3.0.4 Using @@unknown_variable doesn't hang client anymore Added @@VERSION variable
| * Fix for --enable-local-infilemonty@hundin.mysql.fi2002-03-061-1/+1
| |
* | Fix bug in SELECT SQL_CALC_FOUND_ROWSmonty@hundin.mysql.fi2002-05-161-13/+2
| |
* | Removed some long from mysqld comments (should be in manual).monty@hundin.mysql.fi2002-05-151-1/+8
| |
* | Fixed that enable-reads-from-master and repl-parse-query works in option files.monty@hundin.mysql.fi2002-04-291-3/+3
| | | | | | | | | | Fixed slowdown problem on win98 Fixed syntax for ALTER TABLE .. RENAME
* | Removed some old Makefiles to avoid name conflict on Mac OS Xmonty@tik.mysql.fi2002-04-221-1/+1
| | | | | | | | Changed in client library character-set-dir -> character-sets-dir
* | mergemonty@tik.mysql.fi2002-04-121-21/+31
|\ \
| * | Update for BTREE keys in HEAP tablesmonty@tik.mysql.fi2002-04-121-21/+31
| | | | | | | | | | | | Split handler->option_flag() to handler->table_flags() and handler->index_flags()
* | | fixes to make it compile and pass the test suite again after the last sasha@mysql.sashanet.com2002-04-041-1/+2
|/ / | | | | | | accidental push of broken code.