~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.cc

  • Committer: Brian Aker
  • Date: 2009-01-25 02:52:05 UTC
  • mfrom: (801.1.4 testable)
  • Revision ID: brian@gir.tangent.org-20090125025205-zlahg6u6z0w95v64
Merge from Myself

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
extern "C" unsigned char* lock_db_get_key(my_dblock_t *, size_t *, bool not_used);
74
74
 
75
75
unsigned char* lock_db_get_key(my_dblock_t *ptr, size_t *length,
76
 
                       bool not_used __attribute__((unused)))
 
76
                       bool )
77
77
{
78
78
  *length= ptr->name_length;
79
79
  return (unsigned char*) ptr->name;
128
128
                                    bool not_used);
129
129
 
130
130
unsigned char* dboptions_get_key(my_dbopt_t *opt, size_t *length,
131
 
                         bool not_used __attribute__((unused)))
 
131
                         bool )
132
132
{
133
133
  *length= opt->name_length;
134
134
  return (unsigned char*) opt->name;