mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
addresses #1151
make ha_tokudb change for bug git-svn-id: file:///svn/mysql/tokudb-engine/src@6113 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
c955d0a652
commit
a9bf344884
2 changed files with 5 additions and 0 deletions
|
@ -4402,6 +4402,10 @@ void ha_tokudb::get_auto_increment(ulonglong offset, ulonglong increment, ulongl
|
|||
DBUG_VOID_RETURN;
|
||||
}
|
||||
|
||||
bool ha_tokudb::is_auto_inc_singleton(){
|
||||
return false;
|
||||
}
|
||||
|
||||
//
|
||||
// Adds indexes to the table. Takes the array of KEY passed in key_info, and creates
|
||||
// DB's that will go at the end of share->key_file. THE IMPLICIT ASSUMPTION HERE is
|
||||
|
|
|
@ -301,6 +301,7 @@ public:
|
|||
pthread_mutex_unlock(&share->mutex);
|
||||
}
|
||||
virtual void get_auto_increment(ulonglong offset, ulonglong increment, ulonglong nb_desired_values, ulonglong * first_value, ulonglong * nb_reserved_values);
|
||||
bool is_auto_inc_singleton();
|
||||
void print_error(int error, myf errflag);
|
||||
uint8 table_cache_type() {
|
||||
return HA_CACHE_TBL_TRANSACT;
|
||||
|
|
Loading…
Add table
Reference in a new issue