~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Eric Herman
  • Date: 2008-12-06 22:41:26 UTC
  • mto: (656.1.8 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206224126-lw8opdmpioz77o1p
trailing whitespace fixup

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
  uint32_t key_length;
137
137
  char *key_pos= key;
138
138
  key_pos= strcpy(key_pos, table_list->db) + strlen(table_list->db);
139
 
  key_pos= strcpy(key_pos+1, table_list->table_name) + 
 
139
  key_pos= strcpy(key_pos+1, table_list->table_name) +
140
140
                  strlen(table_list->table_name);
141
141
  key_length= (uint32_t)(key_pos-key)+1;
142
142