~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Mark Atwood
  • Date: 2011-10-14 15:59:08 UTC
  • mfrom: (2430.1.12 refactor3a)
  • Revision ID: me@mark.atwood.name-20111014155908-whqmrmaf2grpsg5c
mergeĀ lp:~olafvdspek/drizzle/refactor3

Show diffs side-by-side

added added

removed removed

Lines of Context:
311
311
  if (!length || length > NAME_LEN || name[length - 1] == ' ')
312
312
    return 1;
313
313
  lex_string_t ident;
314
 
  ident.str= (char*) name;
315
 
  ident.length= length;
 
314
  ident.assign(name, length);
316
315
  return check_identifier_name(&ident);
317
316
}
318
317