~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_send.h

Finished first pass at Protocol cleanup, still some things to remove but they are a bit more involved.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
  bool send_fields(List<Item> &list, uint32_t flags)
54
54
  {
55
55
    bool res;
56
 
    if (!(res= session->protocol->send_fields(&list, flags)))
 
56
    if (!(res= session->protocol->sendFields(&list, flags)))
57
57
      is_result_set_started= 1;
58
58
    return res;
59
59
  }
97
97
    char buff[MAX_FIELD_WIDTH];
98
98
    String buffer(buff, sizeof(buff), &my_charset_bin);
99
99
 
100
 
    protocol->prepare_for_resend();
 
100
    protocol->prepareForResend();
101
101
    Item *item;
102
102
    while ((item=li++))
103
103
    {