summaryrefslogtreecommitdiff
path: root/sql/examples
diff options
context:
space:
mode:
authorbrian@zim.(none) <>2005-10-02 20:13:18 -0700
committerbrian@zim.(none) <>2005-10-02 20:13:18 -0700
commit0ba8ca2a17121cc2e4295ab5e04e3ff910ff19ff (patch)
tree0d6229a55087d478a4a78a95c498d0e963d270d8 /sql/examples
parentb2f52819290c172ef2a0ace692b0da9c3c500617 (diff)
parent54a958993ced2a53b85448e1840cf45f4bd56d95 (diff)
downloadmariadb-git-0ba8ca2a17121cc2e4295ab5e04e3ff910ff19ff.tar.gz
Merge baker@bk-internal.mysql.com:/home/bk/mysql-5.0
into zim.(none):/home/brian/mysql/fix-5.0
Diffstat (limited to 'sql/examples')
-rw-r--r--sql/examples/ha_example.cc6
-rw-r--r--sql/examples/ha_tina.cc4
2 files changed, 9 insertions, 1 deletions
diff --git a/sql/examples/ha_example.cc b/sql/examples/ha_example.cc
index d809398b69f..d340b9289ec 100644
--- a/sql/examples/ha_example.cc
+++ b/sql/examples/ha_example.cc
@@ -74,7 +74,11 @@
handlerton example_hton= {
- "CSV",
+ "EXAMPLE",
+ SHOW_OPTION_YES,
+ "Example storage engine",
+ DB_TYPE_EXAMPLE_DB,
+ NULL, /* We do need to write one! */
0, /* slot */
0, /* savepoint size. */
NULL, /* close_connection */
diff --git a/sql/examples/ha_tina.cc b/sql/examples/ha_tina.cc
index 559fdfbbbd9..86e6ae8a2de 100644
--- a/sql/examples/ha_tina.cc
+++ b/sql/examples/ha_tina.cc
@@ -56,6 +56,10 @@ static int tina_init= 0;
handlerton tina_hton= {
"CSV",
+ SHOW_OPTION_YES,
+ "CSV storage engine",
+ DB_TYPE_CSV_DB,
+ NULL, /* One needs to be written! */
0, /* slot */
0, /* savepoint size. */
NULL, /* close_connection */