- 28 Feb, 2007 1 commit
-
-
jani@ua141d10.elisa.omakaista.fi authored
-
- 23 Dec, 2006 1 commit
-
-
kent@mysql.com/kent-amd64.(none) authored
Changed header to GPL version 2 only
-
- 14 Dec, 2006 1 commit
-
-
monty@mysql.com/narttu.mysql.fi authored
- Removed not used variables and functions - Added #ifdef around code that is not used - Renamed variables and functions to avoid conflicts - Removed some not used arguments Fixed some class/struct warnings in ndb Added define IS_LONGDATA() to simplify code in libmysql.c I did run gcov on the changes and added 'purecov' comments on almost all lines that was not just variable name changes
-
- 05 Dec, 2006 1 commit
-
-
Problem: replication of LC_TIME_NAMES didn't work. Thus, INSERTS or UPDATES using date_format() always worked with en_US on the slave side. Fix: adding ONE_SHOT implementation for LC_TIME_NAMES.
-
- 30 Nov, 2006 1 commit
-
-
monty@mysql.com/narttu.mysql.fi authored
Fixed compiler warnings (detected by VC++): - Removed not used variables - Added casts - Fixed wrong assignments to bool - Fixed wrong calls with bool arguments - Added missing argument to store(longlong), which caused wrong store method to be called.
-
- 17 Oct, 2006 1 commit
-
-
WL #3516: MySQL Enterprise: implement Version Display Specification
-
- 03 Oct, 2006 1 commit
-
-
kroki/tomash@moonlight.intranet authored
invocations of LAST_INSERT_ID. Reding of LAST_INSERT_ID inside stored function wasn't noted by caller, and no LAST_INSERT_ID_EVENT was issued for binary log. The solution is to add THD::last_insert_id_used_bin_log, which is much like THD::last_insert_id_used, but is reset only for upper-level statements. This new variable is used to issue LAST_INSERT_ID_EVENT.
-
- 29 Sep, 2006 1 commit
-
-
tsmith/tim@siva.hindu.god authored
Print version_comment after server version in: mysql.cc: Welcome message and 'status' command output log.cc: Top of log files
-
- 04 Sep, 2006 1 commit
-
-
jonas@perch.ndb.mysql.com authored
fix deadlock if master switches log file in parallell with "show master logs"
-
- 01 Aug, 2006 1 commit
-
-
holyfoot/hf@mysql.com/deer.(none) authored
Here i just disabled STDERR warnings in embedded server Later we should get more defined about logs in the embedded server
-
- 28 Jun, 2006 1 commit
-
-
aivanov@mysql.com authored
and BUG#19208 "Test 'rpl000017' hangs on Windows". Both bugs are caused by attempting to delete an opened file and to create immediatedly a new one with the same name. On Windows it can be supported only on NT-platforms (by using FILE_SHARE_DELETE mode and with renaming the file before deletion). Because deleting not-closed files is not supported on all platforms (e.g. Win 98|ME) this is to be considered harmful and should be eliminated by a "code redesign".
-
- 12 Jun, 2006 1 commit
-
-
cmiller@zippy.(none) authored
mode This is a modification of serg's and guilhem's suggestion in the bug report, in that it also causes the transaction log to be written to disc.
-
- 31 Mar, 2006 1 commit
-
-
lars@mysql.com authored
-
- 18 Feb, 2006 1 commit
-
-
guilhem@mysql.com authored
Fix for BUG#16559 "Replication Problems with Non transactional tables inside an interrupted trans.": problem was: when a connection disconnects having an open transaction affecting MyISAM and InnoDB, the ROLLBACK event stored in the binary log contained a non-zero error code (1053 because of the disconnection), so when slave applied the transaction, slave complained that its ROLLBACK succeeded (error_code=0) while master's had 1053, so slave stopped. But internally generated binlog events such as this ROLLBACK should always have 0 as error code, as is true in 4.1 and was accidentally broken in 5.0, so that there is no false alarm.
-
- 20 Nov, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
Bad examples of usage of a string with its length fixed. The incorrect length in the trigger file configuration descriptor fixed (BUG#14090). A hook for unknown keys added to the parser to support old .TRG files.
-
- 14 Nov, 2005 2 commits
-
-
SergeyV@selena. authored
-
SergeyV@selena. authored
my_sopen() on win32 which allows to use FILE_SHARE_DELETE flag to allow deleting opened files. my_sopen() implementation is added to support this functionality.
-
- 10 Nov, 2005 1 commit
-
-
brian@zim.(none) authored
-
- 04 Nov, 2005 1 commit
-
-
monty@mysql.com authored
(Main reason for reordering was to get rid of compiler warnings for order of element initialization)
-
- 02 Nov, 2005 1 commit
-
-
monty@mysql.com authored
(Fixed failure in rpl0000008.test)
-
- 27 Oct, 2005 1 commit
-
-
monty@mysql.com authored
Added back missing return in mysql_delete()
-
- 17 Oct, 2005 2 commits
-
-
SergeyV@selena. authored
-
SergeyV@selena. authored
-
- 12 Oct, 2005 1 commit
-
-
guilhem@mysql.com authored
in short we now record whenever the slave I/O thread ignores a master's event because of its server id, and use this info in the slave SQL thread to advance Exec_master_log_pos. Because if we do not, this variable stays at the position of the last executed event, i.e. the last *non-ignored* executed one, which may not be the last of the master's binlog (and so the slave *looks* behind the master though it's data-wise it's not).
-
- 06 Oct, 2005 1 commit
-
-
serg@serg.mylan authored
(bug#13791 - mysqld crashes at startup in TC_LOG_MMAP::open)
-
- 04 Oct, 2005 1 commit
-
-
jani@ua141d10.elisa.omakaista.fi authored
using wrong type in assignment etc.
-
- 03 Oct, 2005 2 commits
-
-
SergeyV@selena. authored
of log reset condition.
-
brian@zim.(none) authored
Handlerton array is now created instead of using sys_table_types_st. All storage engines can now have inits and giant ifdef's are now gone for startup. No compeltely clean yet, handlertons will next be merged with sys_table_types. Federated and archive now have real cleanup if their inits fail.
-
- 20 Sep, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
WL#2787 (Add view definer/owner to the view definition (.frm) to check privileges on used tables and stored routines when using a VIEW.) Part 2 postreview fixes.
-
- 16 Sep, 2005 1 commit
-
-
kent@mysql.com authored
Cast my_munmap() argument to be able to compile on Solaris
-
- 15 Sep, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 07 Sep, 2005 1 commit
-
-
sergefp@mysql.com authored
* Allocate thd->user_var_events elements on appropriate mem_root * If several SP statements are binlogged as a single statement, collect all user var accesses they make (grep for StoredRoutinesBinlogging for details)
-
- 26 Aug, 2005 1 commit
-
-
sergefp@mysql.com authored
-
- 25 Aug, 2005 1 commit
-
-
sergefp@mysql.com authored
"Interleaved SPs execution is now binlogged properly, "SELECT spfunc()" is binlogged too. The known remaining issue is binlogging/replication of "a routine is deleted while it is executed" scenario.
-
- 31 Jul, 2005 1 commit
-
-
monty@mishka.local authored
Change bool in C code to my_bool Added to mysqltest --enable_parsning and --disable_parsing to avoid to have to comment parts of tests Added comparison of LEX_STRING's and use this to compare file types for view and trigger files.
-
- 28 Jul, 2005 1 commit
-
-
monty@mysql.com authored
Ensure mysql_close() is called if mysql_set_character_set() fails
-
- 18 Jul, 2005 1 commit
-
-
monty@mishka.local authored
Changed defaults option --instance to --defaults-group-suffix Changed option handling to allow --defaults-file, --defaults-extra-file and --defaults-group-suffix to be given in any order Changed MYSQL_INSTANCE to MYSQL_GROUP_SUFFIX mysql_print_defaults now understands --defaults-group-suffix Remove usage of my_tempnam() (not safe function) if( -> if ( and while( to while (
-
- 12 Jul, 2005 1 commit
-
-
lars@mysql.com authored
-
- 07 Jun, 2005 1 commit
-
-
because it's used also outside.
-
- 26 May, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
- Add O_SHARE when opening file.
-