~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/ha_innodb.cc

  • Committer: Brian Aker
  • Date: 2008-08-09 16:35:34 UTC
  • Revision ID: brian@tangent.org-20080809163534-017q1bkqxkqt0ga1
First pass Innodb my_bool removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
 
121
121
static ulong    innobase_fast_shutdown                  = 1;
122
122
#ifdef UNIV_LOG_ARCHIVE
123
 
static my_bool  innobase_log_archive                    = FALSE;
 
123
static bool     innobase_log_archive                    = FALSE;
124
124
static char*    innobase_log_arch_dir                   = NULL;
125
125
#endif /* UNIV_LOG_ARCHIVE */
126
126
static bool     innobase_use_doublewrite                = TRUE;
145
145
static HASH     innobase_open_tables;
146
146
 
147
147
static uchar* innobase_get_key(INNOBASE_SHARE *share, size_t *length,
148
 
        my_bool not_used __attribute__((unused)));
 
148
                               bool not_used __attribute__((unused)));
149
149
static INNOBASE_SHARE *get_share(const char *table_name);
150
150
static void free_share(INNOBASE_SHARE *share);
151
151
static int innobase_close_connection(handlerton *hton, THD* thd);
4988
4988
int
4989
4989
ha_innobase::discard_or_import_tablespace(
4990
4990
/*======================================*/
4991
 
                                /* out: 0 == success, -1 == error */
4992
 
        my_bool discard)        /* in: TRUE if discard, else import */
 
4991
                                          /* out: 0 == success, -1 == error */
 
4992
                                          bool discard) /* in: TRUE if discard, else import */
4993
4993
{
4994
4994
        dict_table_t*   dict_table;
4995
4995
        trx_t*          trx;
6762
6762
****************************************************************************/
6763
6763
 
6764
6764
static uchar* innobase_get_key(INNOBASE_SHARE* share, size_t *length,
6765
 
        my_bool not_used __attribute__((unused)))
 
6765
                               bool not_used __attribute__((unused)))
6766
6766
{
6767
6767
        *length=share->table_name_length;
6768
6768