~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/row.cc

  • Committer: Brian Aker
  • Date: 2011-11-20 18:59:19 UTC
  • mto: (2463.1.1 drizzle-include)
  • mto: This revision was merged to the branch mainline in revision 2465.
  • Revision ID: brian@tangent.org-20111120185919-8a0og41w2nn8redh
Small correction to style.

Show diffs side-by-side

added added

removed removed

Lines of Context:
226
226
    return DRIZZLE_RETURN_OK;
227
227
  }
228
228
  else if (con->result->options & DRIZZLE_RESULT_ROW_BREAK)
 
229
  {
229
230
    con->result->options&= ~DRIZZLE_RESULT_ROW_BREAK;
 
231
  }
230
232
  else
231
233
  {
232
234
    con->result->row_count++;
235
237
  }
236
238
 
237
239
  drizzle_state_pop(con);
 
240
 
238
241
  return DRIZZLE_RETURN_OK;
239
242
}
240
243
 
258
261
  con->buffer_size+= 4;
259
262
 
260
263
  drizzle_state_pop(con);
 
264
 
261
265
  return DRIZZLE_RETURN_OK;
262
266
}