~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_create.cc

  • Committer: Brian Aker
  • Date: 2010-12-25 00:28:49 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225002849-g73mg6ihulajis0o
First pass in refactoring of the name of my_decimal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
392
392
  /* There are only 16 bits for the total header length. */
393
393
  if (info_length > 65535)
394
394
  {
395
 
    my_printf_error(EE_OK, "MyISAM table '%s' has too many columns and/or "
 
395
    my_printf_error(0, "MyISAM table '%s' has too many columns and/or "
396
396
                    "indexes and/or unique constraints.",
397
397
                    MYF(0), name + internal::dirname_length(name));
398
398
    errno= HA_WRONG_CREATE_OPTION;
526
526
  */
527
527
  if (test_if_reopen(filename))
528
528
  {
529
 
    my_printf_error(EE_OK, "MyISAM table '%s' is in use "
 
529
    my_printf_error(0, "MyISAM table '%s' is in use "
530
530
                    "(most likely by a MERGE table). Try FLUSH TABLES.",
531
531
                    MYF(0), name + internal::dirname_length(name));
532
532
    errno= HA_ERR_TABLE_EXIST;