~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/repeat.cc

  • Committer: Monty Taylor
  • Date: 2010-08-21 03:34:31 UTC
  • mto: (1725.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1726.
  • Revision ID: mordred@inaugust.com-20100821033431-e0czq298av2aqx25
Rearranged how we set -fvisibility, allowing us to turn it on on a
library-by-library basis even if we specify skip-visiblity as an argument to
PANDORA_CANONICAL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
    return res;
85
85
  length=res->length();
86
86
  // Safe length check
87
 
  if (length > current_session->variables.max_allowed_packet / (uint) count)
 
87
  if (length > session.variables.max_allowed_packet / (uint) count)
88
88
  {
89
 
    push_warning_printf(current_session, DRIZZLE_ERROR::WARN_LEVEL_WARN,
 
89
    push_warning_printf(&session, DRIZZLE_ERROR::WARN_LEVEL_WARN,
90
90
                        ER_WARN_ALLOWED_PACKET_OVERFLOWED,
91
91
                        ER(ER_WARN_ALLOWED_PACKET_OVERFLOWED),
92
 
                        func_name(), current_session->variables.max_allowed_packet);
 
92
                        func_name(), session.variables.max_allowed_packet);
93
93
    goto err;
94
94
  }
95
95
  tot_length= length*(uint) count;