~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/num.cc

  • Committer: Brian Aker
  • Date: 2008-10-12 01:59:02 UTC
  • Revision ID: brian@tangent.org-20081012015902-prhy6wsimdqr28om
Dead code around unsigned (first pass)

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
  return 1;
152
152
}
153
153
 
154
 
void Field_num::add_unsigned(String &res) const
155
 
{
156
 
  if (unsigned_flag)
157
 
    res.append(STRING_WITH_LEN(" unsigned"));
158
 
}
159
 
 
160
154
/**
161
155
  Storing decimal in integer fields.
162
156