An error occurred fetching the project authors.
- 19 Jan, 2006 2 commits
-
-
cps@outpost.site authored
CSV storage engine to be statically compiled. Derived from antony's patch.
-
cps@outpost.site authored
tree to get rid of multiple typos in CS comments and unify the patch.
-
- 17 Jan, 2006 2 commits
-
-
partitioned tables in NDB
-
Optimised version of ADD/DROP/REORGANIZE partitions for non-NDB storage engines. New syntax to handle REBUILD/OPTIMIZE/ANALYZE/CHECK/REPAIR partitions Quite a few bug fixes
-
- 12 Jan, 2006 2 commits
-
-
tomas@poseidon.ndb.mysql.com authored
-
ingo@mysql.com authored
NDB cluster is not fully supported. This will be added with WL 1892 (NDB Handler: Add support for CREATE/DROP INDEX). Some preparatory code for this is already present though. A change for the "duplicate key" error message is planned for another changeset.
-
- 11 Jan, 2006 1 commit
-
-
jonas@perch.ndb.mysql.com authored
-
- 10 Jan, 2006 1 commit
-
-
gluh@eagle.intranet.mysql.r18.ru authored
added I_S 'PARTITIONS' table
-
- 05 Jan, 2006 1 commit
-
-
sergefp@mysql.com authored
-
- 04 Jan, 2006 1 commit
-
-
sergefp@mysql.com authored
- post-...-post review fixes - Added "integer range walking" that allows to do partition pruning for "a <=? t.field <=? b" by finding used partitions for a, a+1, a+2, ..., b-1, b.
-
- 02 Jan, 2006 1 commit
-
-
serg@serg.mylan authored
(MySQL plugin interface: status variables) adding SHOW_FUNC, removing SHOW_some_specific_value, only generic SHOW_LONG/SHOW_CHAR/etc are recognized. changing to use SHOW_FUNC instead of ha_update_statistics
-
- 29 Dec, 2005 1 commit
-
-
sergefp@mysql.com authored
-
- 22 Dec, 2005 2 commits
-
-
sergefp@mysql.com authored
-
lars@mysql.com authored
This includes both code and test cases.
-
- 21 Dec, 2005 2 commits
-
-
acurtis@xiphis.org authored
-
acurtis@xiphis.org authored
Give BerkeleyDB savepoints Remove "enum db_type" from most of the code
-
- 15 Dec, 2005 1 commit
-
-
holyfoot@deer.(none) authored
-
- 26 Nov, 2005 1 commit
-
-
serg@serg.mylan authored
-
- 25 Nov, 2005 1 commit
-
-
mikael@mysql.com authored
The previous variant where it was a specific ha_partition method only worked for the partition handler. It was unfortunately called also for the NDB handler and in this case it called a random method in the NDB handler with random input.
-
- 23 Nov, 2005 1 commit
-
-
monty@mysql.com authored
The table opening process now works the following way: - Create common TABLE_SHARE object - Read the .frm file and unpack it into the TABLE_SHARE object - Create a TABLE object based on the information in the TABLE_SHARE object and open a handler to the table object Other noteworthy changes: - In TABLE_SHARE the most common strings are now LEX_STRING's - Better error message when table is not found - Variable table_cache is now renamed 'table_open_cache' - New variable 'table_definition_cache' that is the number of table defintions that will be cached - strxnmov() calls are now fixed to avoid overflows - strxnmov() will now always add one end \0 to result - engine objects are now created with a TABLE_SHARE object instead of a TABLE object. - After creating a field object one must call field->init(table) before using it - For a busy system this change will give you: - Less memory usage for table object - Faster opening of tables (if it's has been in use or is in table definition cache) - Allow you to cache many table definitions objects - Faster drop of table
-
- 10 Nov, 2005 1 commit
-
-
brian@zim.(none) authored
-
- 07 Nov, 2005 1 commit
-
-
acurtis@poseidon.ndb.mysql.com authored
-
- 06 Nov, 2005 2 commits
-
-
ramil@ndbmaster.mysql.com authored
-
kent@mysql.com authored
-
- 05 Nov, 2005 1 commit
-
-
monty@mysql.com authored
This is a merge of 5.0 -> 5.1 + some code from old 5.1 tree to get all tests to work and keep the .frm format the same as the old 5.1 tree.
-
- 03 Nov, 2005 1 commit
-
-
konstantin@mysql.com authored
large table gives server crash": make sure that when a MyISAM temporary table is created for a cursor, it's created in its memory root, not the memory root of the current query.
-
- 02 Nov, 2005 1 commit
-
-
igor@rurik.mysql.com authored
new file sql_table.cc, handler.h: Fixed bug #14540. Added error mnemonic code HA_ADMIN_NOT_BASE_TABLE to report that an operation cannot be applied for views. view.test, view.result: Added a test case for bug #14540. errmsg.txt: Fixed bug #14540. Added error ER_CHECK_NOT_BASE_TABLE.
-
- 10 Oct, 2005 1 commit
-
-
svoj@mysql.com authored
-
- 05 Oct, 2005 1 commit
-
-
serg@serg.mylan authored
-
- 04 Oct, 2005 1 commit
-
-
brian@zim.(none) authored
Final patch for 5.0 for simplifying storage engine code. We now have just one set of ifdefs. I may also remove the code for creating new handlers. May changes were to simplify storage engine setup and support for legacy call to show storage engines.
-
- 03 Oct, 2005 1 commit
-
-
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.
-
- 30 Sep, 2005 3 commits
-
-
eric@mysql.com authored
BUG#13108
-
serg@serg.mylan authored
"SELECT ... FOR UPDATE executed as consistent read inside LOCK TABLES" Do not discard lock_type information as handler::start_stmt() may require knowledge. (fixed by Antony)
-
sergefp@mysql.com authored
HA_KEY_SCAN_NOT_ROR index flag) as NDB index scans are not guaranteed to be ROR scans.
-
- 22 Sep, 2005 1 commit
-
-
brian@zim.(none) authored
The alias structure now is a bit more simple and just uses a pointer to replace with the currect name. The giant case statement should go away in the next patch.
-
- 20 Sep, 2005 2 commits
-
-
sergefp@mysql.com authored
statistics (like 4.0 did) (patch #3, with review #1 & #2 feedback addressed)
-
partitioned tables
-
- 19 Sep, 2005 1 commit
-
-
brian@zim.(none) authored
Cleanup for handlerton structure to allow for loadable engine work. This is the first in a series of patches.
-
- 14 Sep, 2005 1 commit
-
-
tulin@dl145c.mysql.com authored
-
- 13 Sep, 2005 1 commit
-
-
eric@mysql.com authored
(per Monty's patch). Remove references to the "COMMENT" field. WL#2414
-