~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_ident.h

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
  bool is_derived_table() const { return test(sel); }
63
63
  inline void change_db(char *db_name)
64
64
  {
65
 
    db.str= db_name; db.length= (uint) strlen(db_name);
 
65
    db.str= db_name; db.length= (uint32_t) strlen(db_name);
66
66
  }
67
67
};
68
68