summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorunknown <baker@bk-internal.mysql.com>2007-08-09 22:12:13 +0200
committerunknown <baker@bk-internal.mysql.com>2007-08-09 22:12:13 +0200
commit4a15ac2a1c251120bbcf69bc2f0fafa5242826a8 (patch)
tree3a47626c9f2b3b7dea39ab93c7b0f6af6c8c375c /storage
parent6930ac54068b88ce5ca2476f70d74ddb42f5d9fc (diff)
parent8d025792a5cbb8a1ed5361116d5d4f5d1db10a56 (diff)
downloadmariadb-git-4a15ac2a1c251120bbcf69bc2f0fafa5242826a8.tar.gz
Merge bk-internal.mysql.com:/data0/bk/mysql-5.1
into bk-internal.mysql.com:/data0/bk/mysql-5.1-arch client/mysqlslap.c: Auto merged storage/example/ha_example.cc: Auto merged
Diffstat (limited to 'storage')
-rw-r--r--storage/example/ha_example.cc5
-rw-r--r--storage/example/plug.in2
2 files changed, 5 insertions, 2 deletions
diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc
index 06efc727837..1c3b84d3f5f 100644
--- a/storage/example/ha_example.cc
+++ b/storage/example/ha_example.cc
@@ -79,6 +79,10 @@
ha_example::open() would also have been necessary. Calls to
ha_example::extra() are hints as to what will be occuring to the request.
+ A Longer Example can be found called the "Skeleton Engine" which can be
+ found on TangentOrg. It has both an engine and a full build environment
+ for building a pluggable storage engine.
+
Happy coding!<br>
-Brian
*/
@@ -132,7 +136,6 @@ static int example_init_func(void *p)
(hash_get_key) example_get_key,0,0);
example_hton->state= SHOW_OPTION_YES;
- example_hton->db_type= DB_TYPE_EXAMPLE_DB;
example_hton->create= example_create_handler;
example_hton->flags= HTON_CAN_RECREATE;
diff --git a/storage/example/plug.in b/storage/example/plug.in
index ba35b1ea117..ee6beaac64f 100644
--- a/storage/example/plug.in
+++ b/storage/example/plug.in
@@ -1,3 +1,3 @@
MYSQL_STORAGE_ENGINE(example,, [Example Storage Engine],
- [Skeleton for Storage Engines for developers], [max,max-no-ndb])
+ [Example for Storage Engines for developers], [max,max-no-ndb])
MYSQL_PLUGIN_DYNAMIC(example, [ha_example.la])