~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_base.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 18:27:33 UTC
  • Revision ID: brian@tangent.org-20080713182733-3u1et5nrmofi8a8n
my_bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
 
47
47
extern "C" uchar *table_cache_key(const uchar *record, size_t *length,
48
 
                                 my_bool not_used __attribute__((unused)))
 
48
                                  bool not_used __attribute__((unused)))
49
49
{
50
50
  TABLE *entry=(TABLE*) record;
51
51
  *length= entry->s->table_cache_key.length;
122
122
*****************************************************************************/
123
123
 
124
124
extern "C" uchar *table_def_key(const uchar *record, size_t *length,
125
 
                               my_bool not_used __attribute__((unused)))
 
125
                                bool not_used __attribute__((unused)))
126
126
{
127
127
  TABLE_SHARE *entry=(TABLE_SHARE*) record;
128
128
  *length= entry->table_cache_key.length;