~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Toru Maesaka
  • Date: 2008-12-14 08:26:38 UTC
  • mto: (670.1.24 devel)
  • mto: This revision was merged to the branch mainline in revision 676.
  • Revision ID: dev@torum.net-20081214082638-c8uje8oiwk4s2dh0
First pass of replacing MySQL's strxmov with libc alternatives

Show diffs side-by-side

added added

removed removed

Lines of Context:
2879
2879
  closefrm(&table, 0);
2880
2880
  if (error)
2881
2881
  {
2882
 
    strxmov(name_buff, db, ".", table_name, NULL);
 
2882
    sprintf(name_buff,"%s.%s",db,table_name);
2883
2883
    my_error(ER_CANT_CREATE_TABLE, MYF(ME_BELL+ME_WAITTANG), name_buff, error);
2884
2884
  }
2885
2885
err: