Commit 95b68275 authored by unknown's avatar unknown
Browse files

Fix example storage engine following table def cache updates.

parent efd20661
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
}