diff options
author | unknown <baker@bk-internal.mysql.com> | 2007-08-27 20:20:08 +0200 |
---|---|---|
committer | unknown <baker@bk-internal.mysql.com> | 2007-08-27 20:20:08 +0200 |
commit | f69bba4643b641e75506cd2c0556ebad17228105 (patch) | |
tree | 13244a393ba1799ea7424e8d860ed8db9e092362 /storage/example/ha_example.cc | |
parent | 87f074815555dcc7c27ca931bf39b7639e092b09 (diff) | |
parent | ffc7ef56a3f75cb60fb5c276862b6214354c464b (diff) | |
download | mariadb-git-f69bba4643b641e75506cd2c0556ebad17228105.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/example/ha_example.cc')
-rw-r--r-- | storage/example/ha_example.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc index 65e28da1fe3..b7186dda676 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; |