Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | WL#1648 - Start/Stop Inserting Duplicates Into a Table | ingo@mysql.com | 2004-03-18 | 1 | -0/+33 |
| | |||||
* | Optimized GIS functions | monty@mashka.mysql.fi | 2004-03-04 | 1 | -4/+20 |
| | |||||
* | fixed for BUG #2719 "Heap tables status shows wrong or missing data" | vva@eagle.mysql.r18.ru | 2004-02-20 | 2 | -1/+9 |
| | |||||
* | After merge fixes | monty@mysql.com | 2004-02-16 | 2 | -2/+0 |
| | | | | | | | Added more DBUG statements Ensure that we are comparing end space with BINARY strings Use 'any_db' instead of '' to mean any database. (For HANDLER command) Only strip ' ' when comparing CHAR, not other space-like characters (like \t) | ||||
* | Merge with 4.0.18 | monty@mysql.com | 2004-02-11 | 2 | -7/+9 |
|\ | |||||
| * | Fix for BUG#2477 "Slave stop with error after master reboot if use HEAP tables": | guilhem@mysql.com | 2004-01-30 | 2 | -7/+11 |
| | | | | | | | | | | | | | | | | | | | | | | when we open the HEAP table for the first time since server restart, in hp_open(), we set a flag to propagate this info to the handler level which then writes a DELETE FROM this_heap_table to the binlog. It is not a perfect solution for the bug, because between the server start and the first open of the table, the slave still had old data in his table so a SELECT on the slave may show wrong content. But if there is a --init-file to populate the HEAP table on master as startup, then this is a safe fix (I'll put a note about init-file in the HEAP section of the manual). | ||||
* | | Missed header added | hf@deer.(none) | 2003-12-16 | 1 | -0/+1 |
| | | |||||
* | | Added missing timeout function for named pipes and shared memory (fixes core ↵ | monty@mysql.com | 2003-12-15 | 1 | -13/+50 |
| | | | | | | | | | | | | | | dump on windows) Signed auto_increment keys for HASH tables (like for MyISAM tables in 4.0) nitialize system_charset_info() early. Fixes core dump when starting windows service | ||||
* | | Merge key cache structures to one | monty@mysql.com | 2003-11-20 | 2 | -7/+8 |
| | | | | | | | | Fixed compiler warnings (IRIX C compiler and VC++) | ||||
* | | merged | serg@serg.mylan | 2003-10-15 | 1 | -2/+1 |
|\ \ | |||||
| * | | minor cleanups | serg@sergbook.mysql.com | 2003-09-16 | 1 | -2/+1 |
| | | | |||||
* | | | Merge with 4.0.16 | monty@narttu.mysql.fi | 2003-10-07 | 1 | -2/+2 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | - fixed several typos ("uppdate"->"update" and "tryed"->"tried") | lenz@mysql.com | 2003-09-19 | 1 | -2/+2 |
| | | |||||
| * | Fix and test-case for the bug #775: SELECT misses rows in indexed HEAP table ↵ | ram@mysql.r18.ru | 2003-07-03 | 1 | -3/+6 |
| | | | | | | | | columns. | ||||
* | | After merge fixes | monty@mashka.mysql.fi | 2003-08-19 | 1 | -0/+1 |
| | | | | | | | | | | Use server character set if --default-character-set is not used Added convert_string() for more efficient alloc+character-set convert of strings | ||||
* | | Fix: | bar@bar.mysql.r18.ru | 2003-08-05 | 1 | -4/+6 |
| | | | | | | | | | | | | | | | | | | | | CREATE TABLE t1 (s1 CHAR(5) CHARACTER SET latin1 COLLATE latin1_german2_ci); INSERT INTO t1 VALUES ('Ü'); INSERT INTO t1 VALUES ('ue'); SELECT DISTINCT s1 FROM t1; The above returned two rows in error. Now it returns one row, in latin1_german2_ci: Ü == ue | ||||
* | | Bugfix for HEAP table rb-index scan. | ram@mysql.r18.ru | 2003-06-10 | 1 | -2/+2 |
| | | |||||
* | | CHARSET_INFO structure reorganization for easier maintainance | bar@bar.mysql.r18.ru | 2003-05-23 | 1 | -2/+2 |
| | | |||||
* | | set_default_charset() is not used anymore | root@home.(none) | 2003-03-16 | 2 | -6/+7 |
| | | | | | | | | Some system_charset_info were removed | ||||
* | | Portability fixes | monty@narttu.mysql.fi | 2003-02-27 | 3 | -8/+12 |
| | | | | | | | | Don't define crc32 if we are not linking with gzip | ||||
* | | Portability fixes (for windows) | monty@mashka.mysql.fi | 2003-01-21 | 1 | -0/+2 |
| | | | | | | | | Some changes to the prepared statement protocol to make it easier to use and faster. | ||||
* | | After merge fixes | monty@mashka.mysql.fi | 2002-12-06 | 1 | -1/+1 |
| | | | | | | | | Added THD to add_to_xxx_list() functions for faster parsing. | ||||
* | | Merge with 4.0.6 | monty@mashka.mysql.fi | 2002-12-05 | 5 | -5/+68 |
|\ \ | |/ | |||||
| * | New multi-table-update code | monty@mashka.mysql.fi | 2002-11-29 | 5 | -3/+68 |
| | | | | | | | | | | | | | | 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) | ||||
* | | Fixed bug when creating keys in temporary HEAP tables. | monty@mashka.mysql.fi | 2002-12-02 | 3 | -3/+6 |
| | | | | | | | | | | (This caused the DISTINCT test to fail) Removed one inline as this caused compiler problems | ||||
* | | removed redundant -I include-dirs | serg@serg.mysql.com | 2002-11-26 | 1 | -1/+1 |
| | | |||||
* | | fix for byte ordering bug in HEAP rb-tree | ram@mysql.r18.ru | 2002-11-19 | 2 | -0/+65 |
| | | |||||
* | | fix for NULL processing | ram@mysql.r18.ru | 2002-11-15 | 3 | -17/+21 |
| | | |||||
* | | merge with 4.0.5 | monty@hundin.mysql.fi | 2002-10-16 | 25 | -388/+875 |
|\ \ | |/ |/| | |||||
| * | Merge | monty@hundin.mysql.fi | 2002-10-14 | 1 | -5/+3 |
| |\ | |||||
| | * | merge | monty@narttu.mysql.fi | 2002-10-14 | 1 | -37/+6 |
| | |\ | |||||
| | * | | Portability fixes to be able to compile MySQL with VC++ | monty@narttu.mysql.fi | 2002-10-08 | 1 | -5/+3 |
| | | | | |||||
| * | | | Merge work:/home/bk/mysql-4.1 | serg@serg.mysql.com | 2002-10-14 | 1 | -2/+2 |
| |\ \ \ | | | | | | | | | | | | | | | | into serg.mysql.com:/usr/home/serg/Abk/mysql-4.1 | ||||
| | * | | | DEBUG_PRINT() has been fixed | ram@mysql.r18.ru | 2002-10-14 | 1 | -2/+2 |
| | | |/ | | |/| | |||||
| * | | | merged | serg@serg.mysql.com | 2002-10-14 | 25 | -382/+877 |
| |\ \ \ | | |/ / | |||||
| | * | | Don't use sort_order directly | bar@bar.mysql.r18.ru | 2002-10-10 | 1 | -10/+2 |
| | | | | |||||
| | * | | Move hash_sort and hash_caseup into CHARSET_INFO for all charsets | bar@bar.mysql.r18.ru | 2002-10-10 | 1 | -25/+2 |
| | | | | |||||
| | * | | my_sortcmp -> my_strnncoll | bar@bar.mysql.r18.ru | 2002-10-09 | 1 | -2/+2 |
| | |/ | |||||
| | * | auto_increment for heap tables | ram@mysql.r18.ru | 2002-10-07 | 7 | -8/+75 |
| | | | | | | | | | | | | test case | ||||
| | * | Additional key segment (HA_KEYTYPE_END) creation has been moved from handler ↵ | ram@mysql.r18.ru | 2002-10-03 | 1 | -7/+11 |
| | | | | | | | | | | | | to hp_create.c | ||||
| | * | Some speed improvements | bar@bar.mysql.r18.ru | 2002-08-15 | 1 | -8/+15 |
| | | | |||||
| | * | Stupid bug has been fixed | ram@ram.(none) | 2002-07-12 | 2 | -0/+2 |
| | | | |||||
| | * | Merge rkalimullin@work.mysql.com:/home/bk/mysql-4.1 | ram@gw.udmsearch.izhnet.ru | 2002-06-07 | 4 | -173/+181 |
| | |\ | | | | | | | | | | | | | into gw.udmsearch.izhnet.ru:/usr/home/ram/mysql-4.1.ai | ||||
| | | * | tests fixes | ram@gw.udmsearch.izhnet.ru | 2002-06-07 | 2 | -3/+10 |
| | | | | |||||
| | | * | heap_create() <-> heap_open() | ram@gw.udmsearch.izhnet.ru | 2002-06-07 | 4 | -171/+172 |
| | | | | |||||
| | * | | check_one_rb_key() func | ram@gw.udmsearch.izhnet.ru | 2002-06-07 | 1 | -4/+51 |
| | |/ | |||||
| | * | Merge work:/my/mysql-4.1 into hundin.mysql.fi:/my/mysql-4.1 | monty@hundin.mysql.fi | 2002-06-04 | 1 | -1/+1 |
| | |\ | |||||
| | | * | Changes for new binary .frm format | monty@hundin.mysql.fi | 2002-06-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Fixes after last merge from 4.0. (Code not yet complete, need anoter merge from 4.0) | ||||
| | * | | Removed unnecessary key search in the hp_rb_write_key() function | ram@gw.udmsearch.izhnet.ru | 2002-05-28 | 2 | -15/+16 |
| | | | | |||||
| | * | | Heap table code cleanup | ram@gw.udmsearch.izhnet.ru | 2002-05-23 | 8 | -71/+76 |
| | |/ |