From 866ea4552fd15ee1db9052cceecdc218ff41f7a8 Mon Sep 17 00:00:00 2001 From: "knielsen@mysql.com" <> Date: Fri, 25 Nov 2005 10:35:26 +0100 Subject: [PATCH] Fix example storage engine following table def cache updates. --- sql/examples/ha_example.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/examples/ha_example.cc b/sql/examples/ha_example.cc index db7a811df78..38e0171774e 100644 --- a/sql/examples/ha_example.cc +++ b/sql/examples/ha_example.cc @@ -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); }