~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.cc

  • Committer: Brian Aker
  • Date: 2008-10-20 04:28:21 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081020042821-rqqdrccuu8195k3y
Second pass of thd cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
420
420
 
421
421
uint32_t Field_blob::sort_length() const
422
422
{
423
 
  return (uint32_t) (current_thd->variables.max_sort_length + 
 
423
  return (uint32_t) (current_session->variables.max_sort_length + 
424
424
                   (field_charset == &my_charset_bin ? 0 : packlength));
425
425
}
426
426