diff options
author | eric@mysql.com <> | 2005-09-30 16:26:48 -0700 |
---|---|---|
committer | eric@mysql.com <> | 2005-09-30 16:26:48 -0700 |
commit | 5008a5f208dd7d1c94755fb5051401473465276f (patch) | |
tree | c1894e3d927782633ebebf8b571ef7b84d2689fe /sql/examples | |
parent | 16cd4bd3321e0c21e6867898f5017074fbb6ce57 (diff) | |
download | mariadb-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.cc | 2 | ||||
-rw-r--r-- | sql/examples/ha_tina.cc | 2 |
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 }; /***************************************************************************** |