mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
Merge 5.1-bugteam -> 5.1-innodb_plugin.
This commit is contained in:
commit
058cd62565
388 changed files with 9440 additions and 3521 deletions
|
|
@ -419,6 +419,14 @@ int ha_heap::delete_all_rows()
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int ha_heap::reset_auto_increment(ulonglong value)
|
||||
{
|
||||
file->s->auto_increment= value;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int ha_heap::external_lock(THD *thd, int lock_type)
|
||||
{
|
||||
return 0; // No external locking
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@ public:
|
|||
int reset();
|
||||
int external_lock(THD *thd, int lock_type);
|
||||
int delete_all_rows(void);
|
||||
int reset_auto_increment(ulonglong value);
|
||||
int disable_indexes(uint mode);
|
||||
int enable_indexes(uint mode);
|
||||
int indexes_are_disabled(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue