~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Monty Taylor
  • Date: 2008-12-06 23:03:19 UTC
  • mfrom: (660.1.6 codestyle)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: monty@inaugust.com-20081206230319-r572jrn3khtuepwf
MergedĀ fromĀ Eric.

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