mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 13:45:34 +02: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
This commit is contained in:
parent
e1527cd7ec
commit
abb40bace9
3 changed files with 33 additions and 30 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue