Commit 866ea455 authored by knielsen@mysql.com's avatar knielsen@mysql.com

Fix example storage engine following table def cache updates.

parent 47199237
......@@ -71,7 +71,7 @@
#include "ha_example.h"
static handler* example_create_handler(TABLE *table);
static handler* example_create_handler(TABLE_SHARE *table);
handlerton example_hton= {
"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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment