~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.cc

  • Committer: Brian Aker
  • Date: 2008-12-23 18:50:53 UTC
  • Revision ID: brian@tangent.org-20081223185053-w6wwx2lr5jvuncx2
Dead code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2630
2630
      }
2631
2631
      break;
2632
2632
 
2633
 
    case HA_ADMIN_NOT_BASE_TABLE:
2634
 
      {
2635
 
        char buf[ERRMSGSIZE+20];
2636
 
        uint32_t length= snprintf(buf, ERRMSGSIZE,
2637
 
                              ER(ER_BAD_TABLE_ERROR), table_name);
2638
 
        protocol->store(STRING_WITH_LEN("note"), system_charset_info);
2639
 
        protocol->store(buf, length, system_charset_info);
2640
 
      }
2641
 
      break;
2642
 
 
2643
2633
    case HA_ADMIN_OK:
2644
2634
      protocol->store(STRING_WITH_LEN("status"), system_charset_info);
2645
2635
      protocol->store(STRING_WITH_LEN("OK"), system_charset_info);