~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.cc

  • Committer: Monty Taylor
  • Date: 2008-10-20 08:48:34 UTC
  • mfrom: (520.1.22 drizzle)
  • Revision ID: monty@inaugust.com-20081020084834-xpb3w01vkcp55o02
Merged trunk.

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