~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_class.h

  • Committer: Brian Aker
  • Date: 2008-07-20 07:56:12 UTC
  • Revision ID: brian@tangent.org-20080720075612-hihd0rwoyo02i7vv
my_bool from handler and set_var

Show diffs side-by-side

added added

removed removed

Lines of Context:
323
323
  */
324
324
  my_thread_id pseudo_thread_id;
325
325
 
326
 
  my_bool low_priority_updates;
327
 
  my_bool new_mode;
 
326
  bool low_priority_updates;
 
327
  bool new_mode;
328
328
  /* 
329
329
    compatibility option:
330
330
      - index usage hints (USE INDEX without a FOR clause) behave as in 5.0 
331
331
  */
332
332
  bool old_mode;
333
 
  my_bool engine_condition_pushdown;
334
 
  my_bool keep_files_on_create;
 
333
  bool engine_condition_pushdown;
 
334
  bool keep_files_on_create;
335
335
 
336
 
  my_bool old_alter_table;
 
336
  bool old_alter_table;
337
337
 
338
338
  plugin_ref table_plugin;
339
339
 
356
356
  DATE_TIME_FORMAT *date_format;
357
357
  DATE_TIME_FORMAT *datetime_format;
358
358
  DATE_TIME_FORMAT *time_format;
359
 
  my_bool sysdate_is_now;
 
359
  bool sysdate_is_now;
360
360
 
361
361
};
362
362
 
1520
1520
  /* Used by the sys_var class to store temporary values */
1521
1521
  union
1522
1522
  {
1523
 
    my_bool   my_bool_value;
 
1523
    bool   bool_value;
1524
1524
    long      long_value;
1525
1525
    ulong     ulong_value;
1526
1526
    uint64_t uint64_t_value;