~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_show.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 20:34:17 UTC
  • Revision ID: brian@tangent.org-20080713203417-mvmtk1cx1r5vowes
More bool conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
  return snprintf(buf, buf_length, "%d.%d", version>>8,version&0xff);
88
88
}
89
89
 
90
 
static my_bool show_plugins(THD *thd, plugin_ref plugin,
 
90
static bool show_plugins(THD *thd, plugin_ref plugin,
91
91
                            void *arg)
92
92
{
93
93
  TABLE *table= (TABLE*) arg;
1588
1588
          end= strmov(buff, *(bool*) value ? "ON" : "OFF");
1589
1589
          break;
1590
1590
        case SHOW_MY_BOOL:
1591
 
          end= strmov(buff, *(my_bool*) value ? "ON" : "OFF");
 
1591
          end= strmov(buff, *(bool*) value ? "ON" : "OFF");
1592
1592
          break;
1593
1593
        case SHOW_INT:
1594
1594
          end= int10_to_str((long) *(uint32*) value, buff, 10);
2099
2099
};
2100
2100
 
2101
2101
 
2102
 
static my_bool add_schema_table(THD *thd, plugin_ref plugin,
 
2102
static bool add_schema_table(THD *thd, plugin_ref plugin,
2103
2103
                                void* p_data)
2104
2104
{
2105
2105
  LEX_STRING *file_name= 0;
3783
3783
    0   table not found
3784
3784
    1   found the schema table
3785
3785
*/
3786
 
static my_bool find_schema_table_in_plugin(THD *thd __attribute__((__unused__)),
 
3786
static bool find_schema_table_in_plugin(THD *thd __attribute__((__unused__)),
3787
3787
                                           plugin_ref plugin,
3788
3788
                                           void* p_table)
3789
3789
{