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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user