~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/double.cc

  • Committer: Andrew Hutchings
  • Date: 2010-09-26 08:33:47 UTC
  • mto: (1795.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1796.
  • Revision ID: andrew@linuxjedi.co.uk-20100926083347-fzsc9e7w0j4u7bj1
Disable boost:po allow_guessing which was making some wrong assumptions

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
  }