diff options
author | unknown <brian@zim.(none)> | 2007-08-01 08:50:38 -0700 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2007-08-01 08:50:38 -0700 |
commit | 0dbd5f02ee5a7191291f954ca730a8329dbe7065 (patch) | |
tree | aa2cb3defad247663912ff3b0a6798540ff94d5f /storage/example/ha_example.cc | |
parent | a80d50bc99c93538ecd8df9ac340d1264d4bbfc3 (diff) | |
download | mariadb-git-0dbd5f02ee5a7191291f954ca730a8329dbe7065.tar.gz |
On internals@mysql a developer at IBM pointed out that DBTYPE needed to be removed from the example (its a single line which was needed for previous versions of MySQL). Its been removed. Added a couple of comments.
storage/example/ha_example.cc:
Removed line, added comment about Skeleton.
storage/example/plug.in:
Corrected explanation
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 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; |