~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/SysTab_dump.cc

trunk merge plus more pbms updates for drizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
        table->write_set = NULL;
161
161
        memset(buf, 0xFF, table->s->null_bytes);
162
162
        
163
 
        for (Field **field=table->field ; *field ; field++) {
 
163
        for (Field **field=table->getFields() ; *field ; field++) {
164
164
                curr_field = *field;
165
165
 
166
166
                save = curr_field->ptr;
424
424
        uint32_t packlength, length;
425
425
        const char *blob_rec, *blob_ptr;
426
426
        
427
 
        field = (Field_blob *)(table->field[0]);
 
427
        field = (Field_blob *)table->getField(0);
428
428
        
429
429
    /* Get the blob record: */
430
430
    blob_rec= buf + field->offset(table->record[0]);