Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge with global tree | monty@mysql.com | 2005-01-18 | 1 | -0/+3 |
|\ | |||||
| * | Merge mysql.com:/home/my/mysql-4.0 into mysql.com:/home/my/mysql-4.1 | monty@mysql.com | 2005-01-18 | 1 | -0/+3 |
| |\ | |||||
| | * | Anoter fix for moved IO_CACHE object | monty@mysql.com | 2005-01-18 | 1 | -0/+3 |
| | | | |||||
* | | | Merge with 4.1 | monty@mysql.com | 2005-01-15 | 1 | -5/+3 |
|\ \ \ | |/ / | |||||
| * | | Merge | monty@mysql.com | 2005-01-15 | 1 | -0/+2 |
| |\ \ | | |/ | |||||
| | * | Fixed possible access to unintialized memory in filesort when using many buffers | monty@mysql.com | 2005-01-15 | 1 | -0/+2 |
| | | | |||||
| * | | bug#7284: strnxfrm returns different results for equal strings | bar@mysql.com | 2005-01-13 | 1 | -4/+1 |
| | | | |||||
* | | | Changed interface for my_strntod() to make it more general and more portable | monty@mysql.com | 2005-01-15 | 1 | -2/+3 |
| | | | |||||
* | | | Fix accesses to uninitialized memory (found by valgrind) | monty@mysql.com | 2005-01-13 | 1 | -1/+6 |
| | | | |||||
* | | | First stage of table definition cache | monty@mysql.com | 2005-01-06 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Split TABLE to TABLE and TABLE_SHARE (TABLE_SHARE is still allocated as part of table, will be fixed soon) Created Field::make_field() and made Field_num::make_field() to call this Added 'TABLE_SHARE->db' that points to database name; Changed all usage of table_cache_key as database name to use this instead Changed field->table_name to point to pointer to alias. This allows us to change alias for a table by just updating one pointer. Renamed TABLE_SHARE->real_name to table_name Renamed TABLE->table_name to alias Renamed TABLE_LIST->real_name to table_name | ||||
* | | | Merge bk-internal:/home/bk/mysql-5.0 | serg@serg.mylan | 2004-11-15 | 1 | -2/+3 |
|\ \ \ | | | | | | | | | | | | | into serg.mylan:/usr/home/serg/Abk/mysql-5.0 | ||||
| * \ \ | merge | bell@sanja.is.com.ua | 2004-11-12 | 1 | -1/+2 |
| |\ \ \ | |||||
| | * | | | post-review fixes | bell@sanja.is.com.ua | 2004-11-12 | 1 | -1/+2 |
| | | | | | |||||
| * | | | | Rename: Item::val -> Item::val_real(). | konstantin@mysql.com | 2004-11-11 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | s/ha_store_ptr/my_store_ptr/ | serg@serg.mylan | 2004-11-07 | 1 | -1/+1 |
|/ / / / | | | | | | | | | | | | | s/ha_get_ptr/my_get_ptr/ | ||||
* | | | | merge with 4.1 | monty@mysql.com | 2004-10-29 | 1 | -6/+79 |
|\ \ \ \ | |/ / / |/| / / | |/ / | |||||
| * | | Fix for BUG#5117: | sergefp@mysql.com | 2004-09-13 | 1 | -6/+79 |
| | | | | | | | | | | | | | | | * Renamed handler::estimate_number_of_rows to handler::estimate_rows_upper_bound function, which can also return "unknown" * made filesort to use full sort buffer if number of rows to sort is not known. | ||||
* | | | Added per thread status variables, after review, patch v1.1. | jani@rhols221.adsl.netsonic.fi | 2004-09-13 | 1 | -4/+6 |
| | | | |||||
* | | | Merge with 4.1.3-beta | monty@mysql.com | 2004-07-07 | 1 | -5/+6 |
|\ \ \ | |/ / | |||||
| * | | Added missing root user to mysql.user on windows. (Bug #4242) | monty@mysql.com | 2004-06-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | Set default max_allowed_packet to be able to read help tables even if an my.cnf file with this option is present. (Bug #3938) Don't use default arguments for ha_rnd_init() Simple code cleanups since last pull | ||||
| * | | handler interface cleanups: | serg@serg.mylan | 2004-06-23 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | more logical table/index_flags return HA_ERR_WRONG_COMMAND instead of abstract methods where appropriate max_keys and other limits renamed to max_supported_keys/etc max_keys/etc are now wrappers to max_supported_keys/etc ha_index_init/ha_rnd_init/ha_index_end/ha_rnd_end are now wrappers to real {index,rnd}_{init,end} to enforce strict pairing | ||||
| * | | Changed prototype of killed_ptr() to make it more portable | monty@mysql.com | 2004-05-26 | 1 | -3/+3 |
| | | | | | | | | | | | | Applied patches for Netware | ||||
* | | | Merge 4.1 -> 5.0. | pem@mysql.com | 2004-04-07 | 1 | -14/+53 |
|\ \ \ | |/ / | |||||
| * | | Fixed warnings from valgrind (not a bug) | monty@mysql.com | 2004-04-06 | 1 | -1/+14 |
| | | | | | | | | | | | | | | | Don't add -debug to server version if MYSQL_SERVER_PREFIX is used Indentation cleanups | ||||
| * | | BTREE-indexes in HEAP tables can now be used to optimize ORDER BY | monty@mysql.com | 2004-03-25 | 1 | -3/+7 |
| | | | | | | | | | | | | | | | | | | Don't read character set files if we are using only the default charset. In most cases the user will not anymore get a warning about missing character set files Compare strings with space extend instead of space strip. Now the following comparisons holds: "a" == "a " and "a\t" < "a". (Bug #3152). Note: Because of the above fix, one has to do a REPAIR on any table that has an ascii character < 32 last in a CHAR/VARCHAR/TEXT columns. | ||||
| * | | Merge with 4.0.18 | monty@mysql.com | 2004-02-11 | 1 | -10/+32 |
| |\ \ | | |/ | |||||
| | * | Some small portability fixes. | monty@mysql.com | 2003-12-30 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | Added support for lower_case_table_names=2, which is to be used on case insensitive file systems. This tells MySQL to preserve the used case of filenames and database names to make it esier to move files between cases sensitive can case insensitive file systems (like Windows and Linux) | ||||
| | * | Removed some test that was not relevant for MySQL (and which caused problems ↵ | monty@mysql.com | 2003-12-21 | 1 | -23/+32 |
| | | | | | | | | | | | | in MySQL 4.1) | ||||
* | | | Merge 4.1 into 5.0. | pem@mysql.com | 2004-02-10 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | just tried to find all 'skipp' and replace it with 'skip'. | ram@gw.mysql.r18.ru | 2004-02-02 | 1 | -1/+1 |
| | | | |||||
* | | | Merge mysql.com:/my/mysql-4.1 into mysql.com:/my/mysql-5.0 | monty@mysql.com | 2003-12-21 | 1 | -13/+1 |
|\ \ \ | |/ / | |||||
| * | | Portability fixes found during 5.0 test compilation | monty@mysql.com | 2003-12-21 | 1 | -13/+1 |
| | | | | | | | | | | | | | | | | | | Fixed bug in ORDER BY on a small column (Bug #2147) Fixed error from pthread_mutex_destroy() when one had wrong errmsg file | ||||
| * | | THD::lex now points to THD::main_lex like in 5.0 | konstantin@oak.local | 2003-12-19 | 1 | -1/+1 |
| | | | | | | | | | | | | All tests pass (client_test included) | ||||
* | | | Update for VC++ | monty@mysql.com | 2003-12-21 | 1 | -1/+1 |
| | | | | | | | | | | | | (Fixed project files, compiler warnings etc..) | ||||
* | | | Merge mysql.com:/home/psergey/mysql-5.0-latest-pull | sergefp@mysql.com | 2003-12-20 | 1 | -22/+34 |
|\ \ \ | | | | | | | | | | | | | into mysql.com:/dbdata/psergey/mysql-5.0-imerge-unique | ||||
| * | | | Implementation of SUM(DISTINCT), tests cases | konstantin@oak.local | 2003-12-19 | 1 | -22/+34 |
| | | | | |||||
* | | | | Precise read time estimates for index_merge/Unique | sergefp@mysql.com | 2003-12-18 | 1 | -4/+4 |
| | | | | |||||
* | | | | Two-sweeps read index_merge plus several small index_merge fixes and ↵ | sergefp@mysql.com | 2003-12-09 | 1 | -3/+14 |
| | | | | | | | | | | | | | | | | improvements | ||||
* | | | | Merging index_merge/Unique into 5.0 | sergefp@mysql.com | 2003-11-23 | 1 | -15/+40 |
|\ \ \ \ | |/ / / |/| | | | |||||
| * | | | index_merge implementation using Unique class, to be merged into 5.0 | sergefp@mysql.com | 2003-11-19 | 1 | -15/+40 |
| | | | | |||||
* | | | | Merging 4.1 -> 5.0 | pem@mysql.com | 2003-09-24 | 1 | -5/+5 |
|\ \ \ \ | |_|/ / |/| | | | |||||
| * | | | Merge 4.1 into 5.0 | pem@mysql.com | 2003-08-26 | 1 | -5/+5 |
| |\ \ \ | | |/ / | |/| | | |||||
| | * | | Merge 4.1 into 5.0 (first pass). | pem@mysql.telia.com | 2003-07-08 | 1 | -5/+5 |
| | |\ \ | |||||
| | | * | | made lex a pointer in THD | vva@eagle.mysql.r18.ru | 2003-05-05 | 1 | -1/+1 |
| | | | | | |||||
| | | * | | Merged 4.1 to 5.0. | pem@mysql.com | 2003-04-29 | 1 | -4/+4 |
| | | |\ \ | |||||
| | | | * \ | Merging | hf@deer.mysql.r18.ru | 2003-04-08 | 1 | -4/+4 |
| | | | |\ \ | |||||
| | | | | * \ | Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-5.0 | hf@genie.(none) | 2003-03-31 | 1 | -4/+4 |
| | | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | into genie.(none):/home/hf/work/mysql-5.0.kil | ||||
| | | | | | * | | SCRUM | hf@genie.(none) | 2003-03-31 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | two KILL commands implementation (version 2) | ||||
* | | | | | | | | - Polished mysql-copyright a bit and added call to remove | lenz@kallisto.local | 2003-09-23 | 1 | -1/+0 |
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cmd-line-utils/readline from the commercial distribution - fixed some copyright headers so mysql-copyright can process them | ||||
* | | | | | | | Old style charset() and set_charset() were removed. | bar@bar.mysql.r18.ru | 2003-08-05 | 1 | -2/+2 |
|/ / / / / / |