~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/double.cc

  • Committer: lbieber
  • Date: 2010-10-05 21:14:30 UTC
  • mfrom: (1775.5.2 bug621331)
  • mto: This revision was merged to the branch mainline in revision 1814.
  • Revision ID: lbieber@orisndriz08-20101005211430-xmy19fcls25swctl
Merge Billy - fix bug 621331 - Replace use of stringstream with boost::lexical_cast

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
  ASSERT_COLUMN_MARKED_FOR_READ;
91
91
 
92
92
#ifdef WORDS_BIGENDIAN
93
 
  if (getTable()->getShare()->db_low_byte_first)
 
93
  if (getTable()->s->db_low_byte_first)
94
94
  {
95
95
    float8get(j,ptr);
96
96
  }
108
108
  ASSERT_COLUMN_MARKED_FOR_READ;
109
109
 
110
110
#ifdef WORDS_BIGENDIAN
111
 
  if (getTable()->getShare()->db_low_byte_first)
 
111
  if (getTable()->s->db_low_byte_first)
112
112
  {
113
113
    float8get(j,ptr);
114
114
  }
150
150
  ASSERT_COLUMN_MARKED_FOR_READ;
151
151
 
152
152
#ifdef WORDS_BIGENDIAN
153
 
  if (getTable()->getShare()->db_low_byte_first)
 
153
  if (getTable()->s->db_low_byte_first)
154
154
  {
155
155
    float8get(nr,ptr);
156
156
  }
177
177
{
178
178
  double a,b;
179
179
#ifdef WORDS_BIGENDIAN
180
 
  if (getTable()->getShare()->db_low_byte_first)
 
180
  if (getTable()->s->db_low_byte_first)
181
181
  {
182
182
    float8get(a,a_ptr);
183
183
    float8get(b,b_ptr);
198
198
{
199
199
  double nr;
200
200
#ifdef WORDS_BIGENDIAN
201
 
  if (getTable()->getShare()->db_low_byte_first)
 
201
  if (getTable()->s->db_low_byte_first)
202
202
  {
203
203
    float8get(nr,ptr);
204
204
  }