~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/double.cc

  • Committer: Brian Aker
  • Date: 2011-03-28 02:46:21 UTC
  • Revision ID: brian@tangent.org-20110328024621-wtkdtlvdplqm0ybf
Shift CHARSET_INFO to charset_info_st

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  double precision floating point numbers
43
43
****************************************************************************/
44
44
 
45
 
int Field_double::store(const char *from,uint32_t len, const CHARSET_INFO * const cs)
 
45
int Field_double::store(const char *from,uint32_t len, const charset_info_st * const cs)
46
46
{
47
47
  int error;
48
48
  char *end;
212
212
 
213
213
void Field_double::sql_type(String &res) const
214
214
{
215
 
  const CHARSET_INFO * const cs=res.charset();
 
215
  const charset_info_st * const cs=res.charset();
216
216
  if (dec == NOT_FIXED_DEC)
217
217
  {
218
218
    res.set_ascii(STRING_WITH_LEN("double"));