~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Lee Bieber
  • Date: 2010-10-26 14:51:47 UTC
  • mfrom: (1879.1.3 build)
  • Revision ID: kalebral@gmail.com-20101026145147-yqop1w9qw7watara
Merge Monty - clean up of set_var and sys_var
Merge Monty - Generate ChangeLog from bzr as part of distcheck. Also, cleaned up AUTHORS file from bzr log parsed by hand.
Merge Shrews - update transaction log documentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
#define Session_SENTRY_MAGIC 0xfeedd1ff
166
166
#define Session_SENTRY_GONE  0xdeadbeef
167
167
 
168
 
struct system_variables
 
168
struct drizzle_system_variables
169
169
{
170
 
  system_variables()
 
170
  drizzle_system_variables()
171
171
  {};
172
172
  /*
173
173
    How dynamically allocated system variables are handled:
238
238
  Time_zone *time_zone;
239
239
};
240
240
 
241
 
extern struct system_variables global_system_variables;
 
241
extern struct drizzle_system_variables global_system_variables;
242
242
 
243
243
} /* namespace drizzled */
244
244
 
415
415
  UserVars user_vars; /**< Hash of user variables defined during the session's lifetime */
416
416
 
417
417
public:
418
 
  struct system_variables variables; /**< Mutable local variables local to the session */
 
418
  drizzle_system_variables variables; /**< Mutable local variables local to the session */
419
419
  struct system_status_var status_var; /**< Session-local status counters */
420
420
  THR_LOCK_INFO lock_info; /**< Locking information for this session */
421
421
  THR_LOCK_OWNER main_lock_id; /**< To use for conventional queries */