~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_create.cc

  • Committer: Brian Aker
  • Date: 2011-01-16 20:38:08 UTC
  • mto: (2088.1.1 merge)
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: brian@gir-3-20110116203808-dl1dvpoarmkug1no
Entire convert over to time_t.

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(0, "MyISAM table '%s' has too many columns and/or "
 
395
    my_printf_error(EE_OK, "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(0, "MyISAM table '%s' is in use "
 
529
    my_printf_error(EE_OK, "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;