~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Brian Aker
  • Date: 2011-02-03 20:32:09 UTC
  • mfrom: (2139.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110203203209-r1t4knmy15x5n1w2
Rollup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
      type::Decimal decimal_value;
103
103
      type::Decimal *val= val_decimal(&decimal_value);
104
104
      if (val)
105
 
        return not val->is_zero();
 
105
        return not val->isZero();
106
106
      return false;
107
107
    }
108
108
 
1202
1202
                                 0,
1203
1203
                                 Field::NONE,
1204
1204
                                 name,
1205
 
                                 decimals,
1206
 
                                 0,
1207
 
                                 unsigned_flag);
 
1205
                                 decimals);
1208
1206
    break;
1209
1207
  case DRIZZLE_TYPE_LONG:
1210
1208
    field= new field::Int32((unsigned char*) 0, max_length, null_ptr, 0, Field::NONE, name);