~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Brian Aker
  • Date: 2009-03-10 02:29:43 UTC
  • mto: This revision was merged to the branch mainline in revision 925.
  • Revision ID: brian@tangent.org-20090310022943-48r7ez5amw3pt5np
Remove TIME COM

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
  { C_STRING_WITH_LEN("Shutdown") },
63
63
  { C_STRING_WITH_LEN("Connect") },
64
64
  { C_STRING_WITH_LEN("Ping") },
65
 
  { C_STRING_WITH_LEN("Time") },
66
65
  { C_STRING_WITH_LEN("Connect Out") },
67
66
  { C_STRING_WITH_LEN("Error") }  // Last command number
68
67
};
596
595
    break;
597
596
  case COM_SLEEP:
598
597
  case COM_CONNECT:                             // Impossible here
599
 
  case COM_TIME:                                // Impossible from client
600
598
  case COM_END:
601
599
  default:
602
600
    my_message(ER_UNKNOWN_COM_ERROR, ER(ER_UNKNOWN_COM_ERROR), MYF(0));