mirror of
https://github.com/MariaDB/server.git
synced 2025-08-05 13:16:09 +03:00
Fix example storage engine following table def cache updates.
This commit is contained in:
@@ -71,7 +71,7 @@
|
|||||||
|
|
||||||
#include "ha_example.h"
|
#include "ha_example.h"
|
||||||
|
|
||||||
static handler* example_create_handler(TABLE *table);
|
static handler* example_create_handler(TABLE_SHARE *table);
|
||||||
|
|
||||||
handlerton example_hton= {
|
handlerton example_hton= {
|
||||||
"EXAMPLE",
|
"EXAMPLE",
|
||||||
@@ -213,7 +213,7 @@ static int free_share(EXAMPLE_SHARE *share)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static handler* example_create_handler(TABLE *table)
|
static handler* example_create_handler(TABLE_SHARE *table)
|
||||||
{
|
{
|
||||||
return new ha_example(table);
|
return new ha_example(table);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user