An error occurred fetching the project authors.
- 04 Feb, 2005 1 commit
-
-
ramil@mysql.com authored
-
- 31 Jan, 2005 1 commit
-
-
tulin@mysql.com authored
+ ion shutdown - don't close files that are not open + abort in debug - if closing a fd == -1
-
- 29 Jan, 2005 1 commit
-
-
brian@zim.(none) authored
-
- 17 Jan, 2005 1 commit
-
-
kaa@polly.local authored
-
- 16 Jan, 2005 1 commit
-
-
reggie@bob.(none) authored
Fixed bug by adding code that displays the contents of mysql.host when \p is added as part of the prompt. mysql.cc: Added code to display mysql.host as prompt when using shared memory
-
- 02 Jan, 2005 1 commit
-
-
paul@snake-hub.snake.net authored
Silence compiler warning.
-
- 30 Dec, 2004 1 commit
-
-
marty@linux.site authored
-
- 18 Dec, 2004 2 commits
-
-
paul@frost.snake.net authored
Convert @samp{c} to 'c', not c.
-
matt@booty.(none) authored
I fixed the typos in the transaction-isolation comments. I fixed the spelling mistakes in the comment. It had tripped up a support customer as they couldn't start the server with transaction-isolation= read-commited
-
- 06 Dec, 2004 1 commit
-
-
stewart@mysql.com[stewart] authored
-
- 02 Dec, 2004 1 commit
-
-
jimw@mysql.com authored
insertion of new records partially failed. It would get logged because of the logic to log a partially-failed 'INSERT ... SELECT' (which can't be rolled back in non-transactional tables), but 'CREATE TABLE ... SELECT' is always rolled back on failure, even for non-transactional tables. (Bug #6682) (Original fix reimplemented after review by Serg and Guilhem.)
-
- 01 Dec, 2004 1 commit
-
-
mwagner@mysql.com authored
Update SSL Cipher so that 'openssl_1' test passes (BUG#6152)
-
- 19 Nov, 2004 1 commit
-
-
petr@mysql.com authored
-
- 18 Nov, 2004 1 commit
-
-
timour@mysql.com authored
-
- 05 Nov, 2004 1 commit
-
-
my.cnf from the default directories.
-
- 03 Nov, 2004 2 commits
-
-
lars@mysql.com authored
The idea of the fix is that the administrative statements OPTIMIZE TABLE, REPAIR TABLE and ANALYZE TABLE should not generate binlog errors if there is no errors on the master.
-
tim@siva.hindu.god authored
for Solaris test, and fix if @IS_LINUX@ test in mysqld_safe itself.
-
- 21 Oct, 2004 1 commit
-
-
paul@kite-hub.kitebird.com authored
Update texi2html with version from mysqldoc repository. (Please merge this forward to 4.0, 4.1, 5.0.)
-
- 16 Oct, 2004 1 commit
-
-
paul@ice.snake.net authored
Changes parsing of @image argument.
-
- 11 Oct, 2004 1 commit
-
-
section, which had gotten somewhat out-dated.
-
- 08 Oct, 2004 1 commit
-
-
binary for mysqld_multi was not found. This is because it is possible to define one under each mysqldN group separately. Bailing out if mysqld binary is not found at all. Added option --silent to turn off warnings.
-
- 07 Oct, 2004 2 commits
-
-
- 03 Oct, 2004 1 commit
-
-
dellis@goetia.(none) authored
BUG #5731 Restrict key_buffer_size to 4GB on 64 bit platforms
-
- 01 Oct, 2004 1 commit
-
-
dellis@goetia.(none) authored
Logging to logging@openlogging.org accepted sql_acl.cc, grant.test, grant.result: BUG 5831 Changed mysql_revoke_all() to successfully delete all privileges for a user in one pass.
-
- 26 Sep, 2004 2 commits
-
-
magnus@shellback.(none) authored
* Changed the implementation of ndbcluster_find_files to be more efficient, using only one mutex lock * Moved ha_find_files to end of mysql_find_files so that it can be passed the list that we are interested to find.
-
hartmut@mysql.com authored
old options for include path and library settings still work for backwards compatibility (fix for BUG #5494)
-
- 25 Sep, 2004 1 commit
-
-
magnus@shellback.(none) authored
-
- 24 Sep, 2004 1 commit
-
-
bar@noter.intranet.mysql.r18.ru authored
Logging to logging@openlogging.org accepted sql_show.cc, type_enum.test, type_enum.result: Bug #5628 German characters in field-defs will be '?' with some table definitions
-
- 20 Sep, 2004 1 commit
-
-
mleich@mysql.com authored
These modifications were part of WL#1856 Conversion of client_test.c tests cases to mysqltest if possible They are separated from the other WL#1856 stuff, because they improve the behaviour of the current tests. Make the result sets (order of rows) more predictable by using ORDER BY.
-
- 17 Sep, 2004 1 commit
-
-
We don't want the update to abort when IGNORE is specified
-
- 15 Sep, 2004 1 commit
-
-
mikael@mc04.(none) authored
Logging to logging@openlogging.org accepted SCI_Transporter.hpp, SCI_Transporter.cpp: Major fix-up of SCI Transporter, fixed so that it works with single card, fixed wrap around, added lots of DBUG statements, merged with new transporter handling TransporterRegistry.cpp: Some fixes for wrap around needed plus DBUG handling TCP_Transporter.hpp, TCP_Transporter.cpp: Added DBUG statements SHM_Transporter.hpp, SHM_Transporter.cpp: Fixed SHM Transporter SHM_Buffer.hpp: Fixed SHM Buffer to handle wrap around properly IPCConfig.cpp: Fixed up config of SCI SocketServer.cpp: Added DBUG support for SocketServer threads ConfigInfo.cpp: Config changes for SCI TransporterDefinitions.hpp, mgmapi_config_parameters.h: SCI fixes Makefile.am, type_ndbapitools.mk.am, type_ndbapitest.mk.am: Added SCI library path to Makefiles configure.in: Fixed small bug with shared mem and sci together in configure acinclude.m4: Added possibility of providing SCI library path in confgure
-
- 09 Sep, 2004 2 commits
-
-
matt@mysql.com authored
Updated to 4.0.22
-
brian@brian-akers-computer.local authored
-
- 30 Aug, 2004 1 commit
-
-
timour@mysql.com authored
The cause of the bug is that Item_func_in::fix_fields did not fully update its used_table_cache. This was the cause for not_null_tables in setup_conds() to be still 0 after the call not_null_tables= (*conds)->not_null_tables(); As a result the condition in setup_conds() if ( ... (table->table->map & not_null_tables) ...) failed, which was the cause for the ON expression not to be added to conds, and later the optimizer couldn't detect that it could apply the OUTER JOIN ==> JOIN optimization.
-
- 27 Aug, 2004 1 commit
-
-
bar@mysql.com authored
Wrong UPPER/LOWER translation for Cyrillic letter tse was fixed. bug#5110
-
- 26 Aug, 2004 1 commit
-
-
joerg@mysql.com authored
functionality. The existing code takes advantage of this when "typedef"ing 'longlong' in 'my_global.h'. This holds for Alpha CPUs. If the compiler then has prototypes for C99 functions 'strtoll()' and 'strtoull()' but no implementation, the existing code in 'strtoull.c' collides with that prototype. These collisions are avoided now.
-
- 24 Aug, 2004 3 commits
-
-
joerg@mysql.com authored
-
miguel@hegel.txg.br authored
-
ingo@mysql.com authored
Replaced fixed port numbers by MASTER_PORT replacement. This allows for a set of ports per tree and hence parallel testing on multiple trees.
-