~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/double.cc

  • Committer: Brian Aker
  • Date: 2010-10-10 02:00:34 UTC
  • mfrom: (1830.1.5 trunk-drizzle)
  • Revision ID: brian@tangent.org-20101010020034-d67x3d09fssxq1v6
Merge rollup of utf8 and table encapsulation.

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()->s->db_low_byte_first)
 
93
  if (getTable()->getShare()->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()->s->db_low_byte_first)
 
111
  if (getTable()->getShare()->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()->s->db_low_byte_first)
 
153
  if (getTable()->getShare()->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()->s->db_low_byte_first)
 
180
  if (getTable()->getShare()->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()->s->db_low_byte_first)
 
201
  if (getTable()->getShare()->db_low_byte_first)
202
202
  {
203
203
    float8get(nr,ptr);
204
204
  }