An error occurred fetching the project authors.
- 11 Apr, 2007 1 commit
-
-
msvensson@pilot.blaudden authored
- Move marcos for __attribute__ usage to my_attribute.h and include that file where needed
-
- 27 Mar, 2007 1 commit
-
-
jani@ua141d10.elisa.omakaista.fi authored
-
- 20 Mar, 2007 1 commit
-
-
iggy@recycle.(none) authored
- Mis-matched SAFEMALLOC defines caused misleading error message.
-
- 18 Jan, 2007 1 commit
-
-
iggy@recycle.(none) authored
- Create space safe strings for system() calls in mysql_upgrade.exe
-
- 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
-
- 23 Nov, 2006 2 commits
-
-
msvensson@neptunus.(none) authored
- Put 'my_getpagesize' in it's own .c file - Map the call 'my_getpagesize' directly to 'getpagesize' if it exists - Add default implementation for 'my_getpagesize' to be used if no platform specfic function exists
-
msvensson@neptunus.(none) authored
-
- 20 Oct, 2006 1 commit
-
-
stewart@willster.(none) authored
post-review fixups - magnus suggested creating dynstr_trunc instead of doing it manually.
-
- 09 Oct, 2006 1 commit
-
-
istruewing@chilla.local authored
OPTIMIZE TABLE with myisam_repair_threads > 1 performs a non-quick parallel repair. This means that it does not only rebuild all indexes, but also the data file. Non-quick parallel repair works so that there is one thread per index. The first of the threads rebuilds also the new data file. The problem was that all threads shared the read io cache on the old data file. If there were holes (deleted records) in the table, the first thread skipped them, writing only contiguous, non-deleted records to the new data file. Then it built the new index so that its entries pointed to the correct record positions. But the other threads didn't know the new record positions, but put the positions from the old data file into the index. The new design is so that there is a shared io cache which is filled by the first thread (the data file writer) with the new contiguous records and read by the other threads. Now they know the new record positions. Another problem was that for the parallel repair of compressed tables a common bit_buff and rec_buff was used. I changed it so that thread specific buffers are used for parallel repair. A similar problem existed for checksum calculation. I made this multi-thread safe too.
-
- 02 Oct, 2006 1 commit
-
-
mats@romeo.(none) authored
crash for, e.g., NDB): Adding new function my_b_copy_to_file() to copy an IO_CACHE to a file.
-
- 29 Sep, 2006 1 commit
-
-
jimw@rama.(none) authored
-
- 17 Aug, 2006 1 commit
-
-
jimw@rama.(none) authored
Fix when __attribute__() is stubbed out, add ATTRIBUTE_FORMAT() for specifying __attribute__((format(...))) safely, make more use of the format attribute, and fix some of the warnings that this turns up (plus a bonus unrelated one).
-
- 07 Jul, 2006 1 commit
-
-
mats@romeo.(none) authored
in pushbuild on Replication/Backup team tree.
-
- 01 Jul, 2006 1 commit
-
-
kent@mysql.com authored
Added missing parameter type change for _my_strdup_with_length()
-
- 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".
-
- 27 Jun, 2006 1 commit
-
-
konstantin@mysql.com authored
Fix a minor issue with Bug#16206 (bdb.test failed if the tree is compiled without blackhole).
-
- 19 Jun, 2006 1 commit
-
-
monty@mysql.com authored
Added missing copyright Indentation and prototype fixes Fixed compiler warning
-
- 01 Jun, 2006 1 commit
-
-
serg@serg.mylan authored
rename *.t* to *-t* to be automake-friendly simplify Makefiles test_atomic.c: move to unittest, add GPL comment, fix warnings, convert to tap framework. configure: remove custom tests for available types, use AC_CHECK_TYPE instead x86-gcc.h: fix gcc -ansi errors while maintaining readability ignore: added *-t
-
- 18 May, 2006 1 commit
-
-
anozdrin@mysql.com authored
- WL#3158: IM: Instance configuration extensions; - WL#3159: IM: --bootstrap and --start-default-instance modes The following new statements have been added: - CREATE INSTANCE; - DROP INSTANCE; The behaviour of the following statements have been changed: - SET; - UNSET; - FLUSH INSTANCES; - SHOW INSTANCES; - SHOW INSTANCE OPTIONS;
-
- 15 May, 2006 1 commit
-
-
knielsen@mysql.com authored
-
- 08 May, 2006 1 commit
-
-
reggie@big_geek. authored
-
- 04 May, 2006 1 commit
-
-
monty@mysql.com authored
Remove compiler warnings Fix some broken tests Workaround for syncronization bug in NDB (Bug #16445)
-
- 03 May, 2006 1 commit
-
-
monty@mysql.com authored
Added support for key_block_size to MyISAM. Simplify interface to 'new Key' to make it easier to add new key options. mysqld option --new is used to define where key options are printed. (In 5.3 we should move all key options to after key part definition to avoid problem with reserved names) Fixed some compiler warnings and a memory leak in ssl
-
- 02 May, 2006 1 commit
-
-
cmiller@zippy.(none) authored
Bug#17667: An attacker has the opportunity to bypass query logging. This adds a new, local-only printf format specifier to our *printf functions that allows us to print known-size buffers that must not be interpreted as NUL-terminated "strings." It uses this format-specifier to print to the log, thus fixing this problem.
-
- 11 Apr, 2006 1 commit
-
-
bar@mysql.com authored
It was impossible to create some table names on Windows (e.g. LPT1, AUX, COM1, etc). Fixed to pad dangerous names with thee "at" signs (e.g. LPT1@@@, AUX@@@, COM1@@@, and so on).
-
- 04 Apr, 2006 1 commit
-
-
msvensson@shellback.(none) authored
- Port ha_tina.cc to run on windows
-
- 24 Feb, 2006 1 commit
-
-
brian@zim.(none) authored
This patch cleans up two tests which were a bit fragile from other failing tests. It also removes some variables associated with removed RAID support.
-
- 07 Feb, 2006 1 commit
-
-
Lots of new code for table log
-
- 26 Jan, 2006 1 commit
-
-
brian@zim.tangent.org authored
Rename of my_strdup_with_lenght to match the more common "strndup" method. Soo its now my_strndup(). my_stat() gettinng the correct parameter list may be next :)
-
- 17 Jan, 2006 1 commit
-
-
partitioned tables in NDB
-
- 04 Jan, 2006 1 commit
-
-
serg@serg.mylan authored
-
- 31 Dec, 2005 1 commit
-
-
bar@mysql.com authored
- Encoding itself, implemented as a charset "filename". Originally planned to use '.' as an escape character, but now changed to '@' for two reasons: "ls" does not return file names starting with '.' considering them as a kind of hidden files; some platforms do not allow several dots in a file name. - replacing many calls of my_snprintf() and strnxmov() to the new build_table_filename(). - Adding MY_APPEND_EXT mysys flag, to append an extention rather that replace it. - Replacing all numeric constants in fn_format flag arguments to their mysys definitions, e.g. MY_UNPACK_FILENAME, - Predictability in several function/methods: when a table name can appear with or withot .frm extension. Some functions/methods were changed so accept names strictly with .frm, other - strictly without .frm extensions. Several DBUG_ASSERTs were added to check whether an extension is passed. Many files: table name to file name encoding mysql_priv.h: Prototypes for new table name encoding tools. ctype-utf8.c: Implementing "filename" charset for table name to file name encoding. row0mysql.c: Fixing table name prefix. mf_format.c: Adding MY_APPEND_EXT processing. Many files: Fixing tests. my_sys.h: Adding new flag to append rather than replace an extension. m_ctype.h: Adding "filename" charset definition.
-
- 19 Dec, 2005 2 commits
-
-
kent@mysql.com authored
Added MAP_NORESERVE set to 0 for Windows config-win.h: If MAX_INDEXES is not set, set it to 64 on Windows
-
vtkachenko@quadxeon.mysql.com authored
on AIX 5.2" Added dummy definition of MAP_NORESERVE for systems which doesn't provide it, removed duplicates my_sys.h: added definition for MAP_NORESERVE (for Irix and AIX systems) sql_map.cc: removed definition of MAP_NORESERVE mi_packrec.c: removed definition of MAP_NORESERVE and MMAP_PRIVATE
-
- 02 Dec, 2005 1 commit
-
-
andrey@lmy004. authored
-
- 01 Dec, 2005 1 commit
-
-
vtkachenko@quadxeon.mysql.com authored
Added mmap support for MyISAM engine
-
- 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.
-
- 12 Oct, 2005 1 commit
-
-
guilhem@mysql.com authored
so a typo on flags will go unnoticed; I put flags in this my_free() definition (as a no-op which will still make the compiler check correctness of the flags). Applied: this caught a typo in my_realloc.c. Kindly approved by Konstantin and Mats.
-