~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-02-19 01:37:43 UTC
  • mfrom: (1273.13.91 build)
  • Revision ID: brian@gaz-20100219013743-367qi0ea1j5vhgzy
Giant merge! Of everything for DD currently.

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
  bool log_warnings;
178
178
 
179
179
  uint32_t optimizer_search_depth;
180
 
  /* A bitmap for switching optimizations on/off */
181
 
  uint32_t optimizer_switch;
182
180
  uint32_t div_precincrement;
183
181
  uint64_t preload_buff_size;
184
182
  uint32_t read_buff_size;
286
284
    sense to add to the /global/ status variable counter.
287
285
  */
288
286
  double last_query_cost;
289
 
} STATUS_VAR;
 
287
} system_status_var;
290
288
 
291
289
/*
292
290
  This is used for 'SHOW STATUS'. It must be updated to the last ulong
1552
1550
static const std::bitset<CF_BIT_SIZE> CF_WRITE_LOGS_COMMAND(1 << CF_BIT_WRITE_LOGS_COMMAND);
1553
1551
 
1554
1552
/* Functions in sql_class.cc */
1555
 
void add_to_status(STATUS_VAR *to_var, STATUS_VAR *from_var);
 
1553
void add_to_status(system_status_var *to_var, system_status_var *from_var);
1556
1554
 
1557
 
void add_diff_to_status(STATUS_VAR *to_var, STATUS_VAR *from_var,
1558
 
                        STATUS_VAR *dec_var);
 
1555
void add_diff_to_status(system_status_var *to_var, system_status_var *from_var,
 
1556
                        system_status_var *dec_var);
1559
1557
 
1560
1558
} /* namespace drizzled */
1561
1559