~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_error.cc

Removed protocol field flags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
  field_list.push_back(new Item_return_int("Code",4, DRIZZLE_TYPE_LONG));
204
204
  field_list.push_back(new Item_empty_string("Message",DRIZZLE_ERRMSG_SIZE));
205
205
 
206
 
  if (session->protocol->sendFields(&field_list,
207
 
                                  Protocol::SEND_NUM_ROWS | Protocol::SEND_EOF))
208
 
    return(true);
 
206
  if (session->protocol->sendFields(&field_list))
 
207
    return true;
209
208
 
210
209
  DRIZZLE_ERROR *err;
211
210
  Select_Lex *sel= &session->lex->select_lex;