summaryrefslogtreecommitdiff
path: root/sql/examples
diff options
context:
space:
mode:
authoreric@mysql.com <>2005-09-30 16:26:48 -0700
committereric@mysql.com <>2005-09-30 16:26:48 -0700
commit5008a5f208dd7d1c94755fb5051401473465276f (patch)
treec1894e3d927782633ebebf8b571ef7b84d2689fe /sql/examples
parent16cd4bd3321e0c21e6867898f5017074fbb6ce57 (diff)
downloadmariadb-git-5008a5f208dd7d1c94755fb5051401473465276f.tar.gz
Move handler specific options into handlerton flag check
BUG#13108
Diffstat (limited to 'sql/examples')
-rw-r--r--sql/examples/ha_example.cc2
-rw-r--r--sql/examples/ha_tina.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/sql/examples/ha_example.cc b/sql/examples/ha_example.cc
index cc4ad3eb535..d809398b69f 100644
--- a/sql/examples/ha_example.cc
+++ b/sql/examples/ha_example.cc
@@ -90,7 +90,7 @@ handlerton example_hton= {
NULL, /* create_cursor_read_view */
NULL, /* set_cursor_read_view */
NULL, /* close_cursor_read_view */
- HTON_NO_FLAGS
+ HTON_CAN_RECREATE
};
/* Variables for example share methods */
diff --git a/sql/examples/ha_tina.cc b/sql/examples/ha_tina.cc
index 5663cd829bd..559fdfbbbd9 100644
--- a/sql/examples/ha_tina.cc
+++ b/sql/examples/ha_tina.cc
@@ -71,7 +71,7 @@ handlerton tina_hton= {
NULL, /* create_cursor_read_view */
NULL, /* set_cursor_read_view */
NULL, /* close_cursor_read_view */
- HTON_NO_FLAGS
+ HTON_CAN_RECREATE
};
/*****************************************************************************