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:
brian@brian-akers-computer.local 2004-04-05 22:57:53 -07:00
commit abb40bace9
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)