1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

ha_example.h:

Fixed spelling of example share and fxed indention.
ha_example.cc:
  Fixed spelling of example and removed a few unneeded printf pieces.
my_base.h:
  Adde HA_ERR_NOT_IMPLEMENTED at Monty's request


include/my_base.h:
  Adde HA_ERR_NOT_IMPLEMENTED at Monty's request
sql/examples/ha_example.cc:
  Fixed spelling of example and removed a few unneeded printf pieces.
sql/examples/ha_example.h:
  Fixed spelling of example share and fxed indention.
This commit is contained in:
unknown
2004-04-05 22:57:53 -07:00
parent 39bbecc4e7
commit 83c2292bb5
3 changed files with 33 additions and 30 deletions

View File

@@ -19,12 +19,12 @@ typedef struct st_example_share {
uint table_name_length,use_count;
pthread_mutex_t mutex;
THR_LOCK lock;
} EXAMLPE_SHARE;
} EXAMPLE_SHARE;
class ha_example: public handler
{
THR_LOCK_DATA lock; /* MySQL lock */
EXAMLPE_SHARE *share; /* Shared lock info */
THR_LOCK_DATA lock; /* MySQL lock */
EXAMPLE_SHARE *share; /* Shared lock info */
public:
ha_example(TABLE *table): handler(table)