An error occurred fetching the project authors.
- 14 Dec, 2003 1 commit
-
-
monty@mysql.com authored
Don't dump data for MRG_ISAM or MRG_MYISAM tables. (Bug #1846) Ensure that 'lower_case_table_names' is always set on case insensitive file systems. (Bug #1812) One can now configure MySQL as windows service as a normal user. (Bug #1802) Database names is now compared with lower case in ON clause when lower_case_table_names is set. (Bug #1736) IGNORE ... LINES option didn't work when used with fixed length rows. (Bug #1704) Change INSERT DELAYED ... SELECT... to INSERT .... SELECT (Bug #1983) Safety fix for service 'mysql start' (Bug #1815)
-
- 11 Dec, 2003 1 commit
-
-
monty@mysql.com authored
mysql_server_init() now returns error code if something went wrong (Bug #2062) Don't use my_fopen() when reading symlink information as this may cause problems when a lot of files are opened. Free thread keys with pthread_key_delete() instead of relying on automatic free. (Bug #2062) Fixed bug in UNION statement with alias '*'. (Bug #1249) Fixed a bug in DELETE ... ORDER BY ... LIMIT where the rows where not deleted in the proper order. (Bug #1024). FOUND_ROWS() could return incorrect number of rows after a query with an impossible WHERE condition. HOW DATABASES doesn't anymore show .sym files (on windows) that doesn't point to a valid directory. (Bug #1385)
-
- 28 Nov, 2003 1 commit
-
-
serg@serg.mylan authored
-
- 29 Oct, 2003 1 commit
-
-
guilhem@mysql.com authored
"If 2 master threads with same-name temp table, slave makes bad binlog" and (two birds with one stone) for BUG#1240 "slave of slave breaks when STOP SLAVE was issud on parent slave and temp tables". Here is the design change: in a slave running with --log-slave-updates, events are now logged with the thread id they had on the master. So no more id conflicts between master threads, but introduces id conflicts between one master thread and one normal client thread connected to the slave. This is solved by storing the server id in the temp table's name. New test which requires mysql-test-run to be run with --manager, otherwise it will be skipped. Undoing a Monty's change (hum, a chill runs down my spine ;) which was "Cleanup temporary tables when slave ends" in ChangeSet 1.1572.1.1.
-
- 28 Sep, 2003 1 commit
-
-
guilhem@mysql.com authored
it's just backquoting the db's and table's names when writing DROP TEMPORARY TABLE to the binlog when a connection ends. A testcase for this.
-
- 14 Jul, 2003 1 commit
-
-
monty@mashka.mysql.fi authored
Changed is_open() to work as before. Added back inited argument to LOG
-
- 11 Jul, 2003 1 commit
-
-
guilhem@mysql.com authored
a safer way of initing the mutexes in MYSQL_LOG. is_open() is now always thread-safe. See each file for details.
-
- 26 Jun, 2003 1 commit
-
-
monty@mashka.mysql.fi authored
-
- 13 May, 2003 1 commit
-
-
monty@narttu.mysql.fi authored
Fixed wrong logging of Access denied error (Bug #398)
-
- 07 May, 2003 2 commits
-
-
monty@mashka.mysql.fi authored
-
monty@mashka.mysql.fi authored
Security patch to remove wrong error when one had a global update/delete privilige and a database specific SELECT privilege.
-
- 03 May, 2003 1 commit
-
-
monty@narttu.mysql.fi authored
-
- 29 Apr, 2003 2 commits
-
-
Sinisa@sinisa.nasamreza.org authored
All tests plus grant.pl test passed.
-
Sinisa@sinisa.nasamreza.org authored
-
- 28 Apr, 2003 1 commit
-
-
monty@mashka.mysql.fi authored
Fix for grant bug with SELECT *
-
- 13 Mar, 2003 1 commit
-
-
monty@mashka.mysql.fi authored
-
- 12 Mar, 2003 1 commit
-
-
Sinisa@sinisa.nasamreza.org authored
-
- 04 Mar, 2003 1 commit
-
-
monty@narttu.mysql.fi authored
Fixed bug in LOCK TABLE + DROP TABLE when other thread was waiting for a table that was locked bug not droped
-
- 28 Jan, 2003 2 commits
-
-
monty@mashka.mysql.fi authored
Call pthread_mutex_destroy() on not used mutex. Changed comments in .h and .c files from // -> /* */ Added detection of mutex on which one didn't call pthread_mutex_destroy() Fixed bug in create_tmp_field() which causes a memory overrun in queries that uses "ORDER BY constant_expression" Added optimisation for ORDER BY NULL
-
monty@mashka.mysql.fi authored
-
- 09 Jan, 2003 1 commit
-
-
monty@mashka.mysql.fi authored
Free row buffer cache after each query for MyISAM tables. Added table join option FORCE INDEX Fixed core dump bug when connecting with hostname that could not be resolved.
-
- 03 Dec, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
Optimized SELECT DISTINCT ... ORDER BY ... LIMIT Fixed reference to uninitalized variable
-
- 29 Nov, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
New (simpler) internal timestamp handling. More debuging to heap tables. Small cleanups to multi-table-delete false -> 0 and true -> 1 (We should use TRUE and FALSE)
-
- 16 Nov, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
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
-
- 13 Nov, 2002 1 commit
-
-
serg@serg.mysql.com authored
-
- 12 Nov, 2002 2 commits
-
-
Sinisa@sinisa.nasamreza.org authored
-
monty@mashka.mysql.fi authored
unlink socket file if mysqld dies on startup Some optimization of AND expressions
-
- 11 Nov, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
This is coded to not cause a speed impact on top level AND expressions where we don't care if an AND expression returns 0 or NULL
-
- 09 Nov, 2002 1 commit
-
-
serg@serg.mysql.com authored
-
- 07 Nov, 2002 3 commits
-
-
monty@hundin.mysql.fi authored
-
monty@hundin.mysql.fi authored
Let MySQL 4.0 read 4.1 .frm files without 4.1 specific extensions New variables @@rand_seed1 and @@rand_seed2 (used by replication) DROP TEMPORARY TABLE
-
monty@butch. authored
-
- 05 Nov, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
Some simple optimizations
-
- 29 Oct, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
Fixed reference to freed memory in acl_init()/grant_init() Fixed possible memory leak. (Could only happen in very strange circumstances) Fixed bug in ALTER TABLE with BDB tables Updated mysql-test for valgrind
-
- 25 Oct, 2002 1 commit
-
-
serg@serg.mysql.com authored
-
- 23 Oct, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
-
- 21 Sep, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
Added missing mutex-lock around critical section in GRANT handling.
-
- 20 Sep, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
Changed table_list->name -> table_list->alias to find places where we where using alias instead of table_name. This should fix some issues where --lower-case-table-names doesn't work properly under windows.
-
- 05 Sep, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
Fixed that GRANT ... REQUIRE options are not forgot when doing new GRANT Changed fn_ext to point at first '.' after directory. FLUSH LOGS removed numerical extension for all future update logs. Fixed the mysqld --help reports right values for --datadir and --bind-address --log-binary=a.b.c now properly strips of .b.c Fix that one can DROP UDF functions that was not loaded at startup Made AND optional in REQUIRE Added REQUIRE NONE
-
- 03 Sep, 2002 1 commit
-
-
Sinisa@sinisa.nasamreza.org authored
expansion of the wildcards
-