~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/haildb_engine.cc

  • Committer: Mark Atwood
  • Date: 2011-06-03 17:50:56 UTC
  • mfrom: (2313.3.5 void)
  • Revision ID: me@mark.atwood.name-20110603175056-i7ayql2uc1sdrohc
mergeĀ lp:~olafvdspek/drizzle/void

Show diffs side-by-side

added added

removed removed

Lines of Context:
1846
1846
    else if ((**field).type() == DRIZZLE_TYPE_BLOB)
1847
1847
    {
1848
1848
      Field_blob *blob= reinterpret_cast<Field_blob*>(*field);
1849
 
      unsigned char* blob_ptr;
1850
1849
      uint32_t blob_length= blob->get_length();
1851
 
      blob->get_ptr(&blob_ptr);
 
1850
      unsigned char* blob_ptr= blob->get_ptr();
1852
1851
      err= ib_col_set_value(tuple, colnr, blob_ptr, blob_length);
1853
1852
    }
1854
1853
    else