mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
Merge with MySQL 5.1.57/58
Moved some BSD string functions from Unireg
This commit is contained in:
commit
e415ba0fb2
538 changed files with 9684 additions and 3379 deletions
|
|
@ -789,9 +789,10 @@ can_enable_indexes(1), bulk_insert_single_undo(BULK_INSERT_NONE)
|
|||
{}
|
||||
|
||||
|
||||
handler *ha_maria::clone(MEM_ROOT *mem_root)
|
||||
handler *ha_maria::clone(const char *name, MEM_ROOT *mem_root)
|
||||
{
|
||||
ha_maria *new_handler= static_cast <ha_maria *>(handler::clone(mem_root));
|
||||
ha_maria *new_handler= static_cast <ha_maria *>(handler::clone(name,
|
||||
mem_root));
|
||||
if (new_handler)
|
||||
{
|
||||
new_handler->file->state= file->state;
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class ha_maria :public handler
|
|||
public:
|
||||
ha_maria(handlerton *hton, TABLE_SHARE * table_arg);
|
||||
~ha_maria() {}
|
||||
handler *clone(MEM_ROOT *mem_root);
|
||||
handler *clone(const char *name, MEM_ROOT *mem_root);
|
||||
const char *table_type() const
|
||||
{ return "MARIA"; }
|
||||
const char *index_type(uint key_number);
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
#include "trnman_public.h"
|
||||
#include "ma_checkpoint.h"
|
||||
#include <hash.h>
|
||||
#include <my_handler.h>
|
||||
|
||||
void history_state_free(MARIA_STATE_HISTORY_CLOSED *closed_history)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue