~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Mark Atwood
  • Date: 2011-07-26 19:55:19 UTC
  • mfrom: (2371.1.3 drizzle-fix-fedora15)
  • Revision ID: me@mark.atwood.name-20110726195519-nt8m1gsmvjbhco1c
mergeĀ lp:~brianaker/drizzle/fedora-fix-3

Show diffs side-by-side

added added

removed removed

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