Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge with 4.0 | monty@mashka.mysql.fi | 2003-10-16 | 1 | -4/+11 |
|\ | |||||
| * | fixed: thread lock-up on a FLASH TABLE when another thread has an open handler | serg@serg.mylan | 2003-09-09 | 1 | -4/+11 |
| | | | | | | | | Bug#1204 | ||||
* | | After merge fixes | monty@mashka.mysql.fi | 2003-08-19 | 1 | -1/+1 |
| | | | | | | | | | | Use server character set if --default-character-set is not used Added convert_string() for more efficient alloc+character-set convert of strings | ||||
* | | Merge with 4.0.14 | monty@mashka.mysql.fi | 2003-08-11 | 1 | -1/+8 |
|\ \ | |/ | |||||
| * | Remove compiler warnings | monty@narttu.mysql.fi | 2003-07-04 | 1 | -1/+1 |
| | | | | | | | | Simple cleanup of previous pull | ||||
| * | fix and test case for the bug #787: HANDLER without INDEX doesn't work with ↵ | ram@mysql.r18.ru | 2003-07-04 | 1 | -22/+17 |
| | | | | | | | | deleted rows | ||||
| * | handler should be used with constant expressions only (or rand) | serg@serg.mylan | 2003-07-04 | 1 | -1/+6 |
| | | |||||
| * | Proposed fix for #751 | hf@deer.(none) | 2003-07-03 | 1 | -0/+2 |
| | | | | | | | | | | Fields in key_expr (mysql_ha_read) wasn't linked to tables. Hmm. How did it work at all? | ||||
* | | fix and test case for the bug #787: HANDLER without INDEX doesn't work with ↵ | ram@mysql.r18.ru | 2003-07-04 | 1 | -22/+17 |
| | | | | | | | | deleted rows | ||||
* | | Merge with 4.0.11 | monty@narttu.mysql.fi | 2003-02-26 | 1 | -4/+7 |
|\ \ | |/ | |||||
| * | ALTER TABLE closes all open HANDLER's for the table in question | serg@serg.mysql.com | 2003-02-22 | 1 | -4/+7 |
| | | | | | | | | fixed error handling in HANDLER ... READ FIRST | ||||
* | | Merge with 4.0.11 tree to get latest bug fixes | monty@mashka.mysql.fi | 2003-02-17 | 1 | -8/+1 |
|\ \ | |/ | |||||
| * | Fixed multi-table-delete for InnoDB tables | monty@mashka.mysql.fi | 2003-02-17 | 1 | -8/+1 |
| | | | | | | | | Novell patches | ||||
* | | After merge fixes & remove compiler warnings | monty@mashka.mysql.fi | 2003-02-07 | 1 | -15/+8 |
| | | | | | | | | | | Added lengths for all MYSQL_FIELD string parameters Changed field length to 2 byte in .frm files | ||||
* | | Merge with 4.0.11 | monty@mashka.mysql.fi | 2003-02-04 | 1 | -5/+23 |
|\ \ | |/ | |||||
| * | fixed "DROP table_open_in_handler" hang | serg@serg.mysql.com | 2003-01-28 | 1 | -15/+22 |
| | | |||||
| * | sql_handler.cc: | heikki@hundin.mysql.fi | 2003-01-13 | 1 | -2/+4 |
| | | | | | | | | Backport the InnoDB HANDLER bug fix from 4.1 | ||||
* | | Merge | monty@mashka.mysql.fi | 2003-01-21 | 1 | -1/+0 |
|\ \ | |||||
| * | | Portability fixes (for windows) | monty@mashka.mysql.fi | 2003-01-21 | 1 | -1/+0 |
| | | | | | | | | | | | | Some changes to the prepared statement protocol to make it easier to use and faster. | ||||
* | | | fixed test of cardinality | bell@sanja.is.com.ua | 2003-01-21 | 1 | -1/+1 |
|/ / | |||||
* | | sql_handler.cc: | heikki@hundin.mysql.fi | 2003-01-13 | 1 | -2/+10 |
| | | | | | | | | Fix InnoDB HANDLER: InnoDB must know in each call that the handle is used by HANDLER; the previous implementation worked only by pure luck | ||||
* | | rename of net_pkg.cc to protocol.cc | monty@mashka.mysql.fi | 2002-12-11 | 1 | -15/+18 |
| | | | | | | | | | | Class for sending data from server to client (Protocol) This handles both the old ( <= 4.0 ) protocol and then new binary protocol that is used for prepared statements. | ||||
* | | Merge with 4.0.6 | monty@mashka.mysql.fi | 2002-12-05 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Change of internal key_field=NULL handling to avoid error messages. | monty@hundin.mysql.fi | 2002-12-03 | 1 | -2/+2 |
| | | | | | | | | | | Optimized SELECT DISTINCT ... ORDER BY ... LIMIT Fixed reference to uninitalized variable | ||||
* | | checking columns of top items | bell@sanja.is.com.ua | 2002-11-29 | 1 | -1/+1 |
| | | |||||
* | | support for HA_READ_PREFIX_LAST_OR_PREV in headres | serg@serg.mysql.com | 2002-10-25 | 1 | -1/+1 |
| | | | | | | | | | | full support for HA_READ_PREFIX_LAST_OR_PREV in MyISAM protected by #if NOT_IMPLEMENTED_YET in opt_range.cc as not all table handlers support it | ||||
* | | Merge with 4.0.4 | monty@mashka.mysql.fi | 2002-10-02 | 1 | -9/+9 |
|\ \ | |/ |/| | |||||
| * | Fixes and code cleanups after merge with 4.0.3 | monty@mashka.mysql.fi | 2002-10-02 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Warning handling and initial prepared statement handling (last not complete yet) Changed a lot of functions that returned 0/1 to my_bool type. GRANT handling now uses read/write locks instead of mutex Change basic net functions to use THD instead of NET (needed for 4.1 protocol) Use my_sprintf instead of sprintf() + strlen() Added alloc_query() to be able to chare query initialization code with prepared statements. Cleanup handling of SHOW COUNT(*) WARNINGS and SELECT LAST_INSERT_ID() Note that the following test fails (will be fixed ASAP): sub_select, union, rpl_rotate_logs and rpl_mystery22 | ||||
| * | Merge with 4.0.3 | monty@narttu.mysql.fi | 2002-08-30 | 1 | -3/+3 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | Some simple optimzations, more comments and indentation changes. Add ` around database in 'use database' in binary log. Moved max_error_count and max_warning_count to variables struct. Removed SHOW_WARNS_COUNT and SHOW_ERRORS_COUNT calls. Changed string functions to use character set of first string argument as default return characterset (Each string function can change the above assumption if needed) | ||||
| | * | Adding a necessary functionality to ::store and ::save_in_field | Sinisa@sinisa.nasamreza.org | 2002-08-24 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | that will take place properly after pull from 4.0, in order to handle conversions from quoted constants to bigint's. | ||||
| | * | subselect in having clause | bell@sanja.is.com.ua | 2002-07-01 | 1 | -1/+1 |
| | | | | | | | | | | | | fixed bug in sum function in subselect | ||||
| | * | merge | monty@hundin.mysql.fi | 2002-04-13 | 1 | -1/+1 |
| | |\ | |||||
| | | * | New ctype functions/macros to support many charsets at a time | bar@gw.udmsearch.izhnet.ru | 2002-03-12 | 1 | -1/+1 |
| | | | | |||||
* | | | | Changed table_list->name -> table_list->alias to find places where we where ↵ | monty@mashka.mysql.fi | 2002-09-20 | 1 | -9/+9 |
|/ / / | | | | | | | | | | | | | | | | using alias instead of table_name. This should fix some issues where --lower-case-table-names doesn't work properly under windows. | ||||
* | | | InnoDB support for HANDLER | serg@serg.mysql.com | 2002-08-21 | 1 | -1/+2 |
| | | | |||||
* | | | semaphores replaced by rwlock | bell@sanja.is.com.ua | 2002-06-30 | 1 | -1/+1 |
| | | | |||||
* | | | Big code cleanup/review before 4.0.2 release. | monty@mashka.mysql.fi | 2002-06-11 | 1 | -1/+1 |
|/ / | | | | | | | | | (All commit emails since 4.0.1 checked) This had to be done now, before the 4.1 tree changes to much, to make it easy to propagate bug fixes to the 4.1 tree. | ||||
* | | Update for BTREE keys in HEAP tables | monty@tik.mysql.fi | 2002-04-12 | 1 | -1/+1 |
|/ | | | | Split handler->option_flag() to handler->table_flags() and handler->index_flags() | ||||
* | New error messages | monty@hundin.mysql.fi | 2002-01-29 | 1 | -57/+58 |
| | | | | | | | | Test of unsigned BIGINT values Fixes for queries-per-hour Cleanup of replication code (comments and portability fixes) Make most of the binary log code 4G clean Changed syntax for GRANT ... QUERIES PER HOUR | ||||
* | handler+alter table | serg@serg.mysql.com | 2002-01-03 | 1 | -0/+5 |
| | |||||
* | HANDLER CLOSE unknown table should produce an error | serg@serg.mysql.com | 2001-12-22 | 1 | -0/+6 |
| | |||||
* | Fix for error message when using HANDLER OPEN on InnoDB tables. | monty@hundin.mysql.fi | 2001-12-22 | 1 | -3/+4 |
| | |||||
* | Merge | serg@serg.mysql.com | 2001-12-21 | 1 | -7/+14 |
|\ | |||||
| * | HANDLER works only with MyISAM tables | serg@serg.mysql.com | 2001-12-21 | 1 | -7/+14 |
| | | | | | | | | HA_NO_FULLTEXT_KEY property -> HA_CAN_FULLTEXT | ||||
* | | Fix after merge | monty@hundin.mysql.fi | 2001-12-17 | 1 | -1/+1 |
|/ | |||||
* | Update copyright | monty@hundin.mysql.fi | 2001-12-06 | 1 | -10/+10 |
| | | | | Fixed memory leak on shutdown (Affects the embedded version & MyODBC) | ||||
* | Fix not critical MyISAM bug in locking. | monty@hundin.mysql.fi | 2001-11-29 | 1 | -0/+4 |
| | | | | | Free character sets properly (for embedded). Add missing mutex in HANDLER CLOSE | ||||
* | New improved IO_CACHE | monty@bitch.mysql.fi | 2001-11-28 | 1 | -3/+3 |
| | |||||
* | Don't do signal() on windows (Causes instability problems) | monty@hundin.mysql.fi | 2001-10-17 | 1 | -1/+1 |
| | | | | | | Safer, a bit faster filesort. Code changes to avoid calls to current_thd() (faster code). Removed all compiler warnings from readline. | ||||
* | Portability fixes | monty@hundin.mysql.fi | 2001-09-17 | 1 | -1/+1 |
| |