~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/src/systab_xt.cc

  • Committer: lbieber
  • Date: 2010-10-05 22:23:12 UTC
  • mfrom: (1813.1.4 build)
  • Revision ID: lbieber@orisndriz08-20101005222312-weuq0ardk3gcryau
Merge Travis - 621861 - convert structs to classes
Merge Billy - 621331 - Replace use of stringstream with boost::lexical_cast
Merge Travis - 621861 = To change C structs to C++ classes in Drizzle
Merge Andrew - fix bug 653300 - Syntax error on inport of a SQL file produced by drizzledump

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2008 PrimeBase Technologies GmbH, Germany
 
1
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
2
2
 *
3
3
 * PrimeBase Media Stream for MySQL
4
4
 *
354
354
        save_write_set = table->write_set;
355
355
        table->write_set = NULL;
356
356
 
357
 
        memset(buf, 0xFF, table->getNullBytes());
 
357
        memset(buf, 0xFF, table->s->null_bytes);
358
358
 
359
359
        tp_ptr = *((XTTablePathPtr *) xt_sl_item_at(ost_db->db_table_paths, row_id));
360
360
 
464
464
        save_write_set = table->write_set;
465
465
        table->write_set = NULL;
466
466
 
467
 
        memset(buf, 0xFF, table->getNullBytes());
 
467
        memset(buf, 0xFF, table->s->null_bytes);
468
468
 
469
469
        stat_name = xt_get_stat_meta_data(rec_id)->sm_name;
470
470
        stat_value = xt_get_statistic(&tt_statistics, ost_db, rec_id);