Skip to content

Commit 866ea45

Browse files
Fix example storage engine following table def cache updates.
1 parent 4719923 commit 866ea45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/examples/ha_example.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171

7272
#include "ha_example.h"
7373

74-
static handler* example_create_handler(TABLE *table);
74+
static handler* example_create_handler(TABLE_SHARE *table);
7575

7676
handlerton example_hton= {
7777
"EXAMPLE",
@@ -213,7 +213,7 @@ static int free_share(EXAMPLE_SHARE *share)
213213
}
214214

215215

216-
static handler* example_create_handler(TABLE *table)
216+
static handler* example_create_handler(TABLE_SHARE *table)
217217
{
218218
return new ha_example(table);
219219
}

0 commit comments

Comments
 (0)