~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.cc

  • Committer: Brian Aker
  • Date: 2009-07-10 06:40:04 UTC
  • mto: (1090.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1091.
  • Revision ID: brian@gaz-20090710064004-1omqif60uedqw360
Removed dead flag code, style cleanup in FK. Removed dead structs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
static void mysql_change_db_impl(Session *session, LEX_STRING *new_db_name);
52
52
            
53
53
 
54
 
 
55
 
/* Structure for database lock */
56
 
typedef struct my_dblock_st
57
 
{
58
 
  char *name;        /* Database name        */
59
 
  uint32_t name_length;  /* Database length name */
60
 
} my_dblock_t;
61
 
 
62
 
 
63
54
/**
64
55
  Return default database collation.
65
56