~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: lbieber
  • Date: 2010-09-22 13:48:54 UTC
  • mfrom: (1784.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100922134854-y7mae2taqhn73vsx
Merge Paul M. - latest changes from PBXT 1.0.11-7
Merge Paul M. - fix bug 641038 - pbxt rollback not working (tables reported as non-transactional)
Merge Andrew - fix show stoppers for new drizzledump

Show diffs side-by-side

added added

removed removed

Lines of Context:
380
380
/* Version number must also be set in configure.in! */
381
381
xtPublic c_char *xt_get_version(void)
382
382
{
383
 
        return "1.1.01 Beta";
 
383
        return "1.1.01 RC";
384
384
}
385
385
 
386
386
/* Copy and URL decode! */
571
571
                "Percentage of index cache that is dirty" },
572
572
 
573
573
#ifdef XT_TIME_DISK_WRITES
574
 
        { XT_STAT_REC_WRITE_TIME,       "Data Log Write Time",  "rec", "w/ms",          XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
 
574
        { XT_STAT_REC_WRITE_TIME,       "Record Write Time",    "rec", "w/ms",          XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
575
575
                "The time in %sseconds to write record/row files" },
576
 
        { XT_STAT_IND_WRITE_TIME,       "Data Log Write Time",  "ind", "w/ms",          XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
 
576
        { XT_STAT_IND_WRITE_TIME,       "Index Write Time",     "ind", "w/ms",          XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
577
577
                "The time in %sseconds to write index files" },
578
 
        { XT_STAT_ILOG_WRITE_TIME,      "Data Log Write Time",  "ilog", "w/ms",         XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
 
578
        { XT_STAT_ILOG_WRITE_TIME,      "Index Log Write Time", "ilog", "w/ms",         XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
579
579
                "The time in %sseconds to index log files" },
580
 
        { XT_STAT_XLOG_WRITE_TIME,      "Data Log Write Time",  "*xlog", "w/ms",                XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
 
580
        { XT_STAT_XLOG_WRITE_TIME,      "Xact Log Write Time",  "*xlog", "w/ms",                XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
581
581
                "The time in %sseconds to transaction log files" },
582
582
        { XT_STAT_DATA_WRITE_TIME,      "Data Log Write Time",  "*data", "w/ms",                XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
583
583
                "The time in %sseconds to write data log files" }
585
585
 
586
586
#ifdef XT_TIME_DISK_READS
587
587
    ,
588
 
        { XT_STAT_REC_READ_TIME,        "Data Log Read Time",   "rec", "r/ms",          XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
 
588
        { XT_STAT_REC_READ_TIME,        "Record Read Time",     "rec", "r/ms",          XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
589
589
                "The time in %sseconds to read record/row files" },
590
 
        { XT_STAT_IND_READ_TIME,        "Data Log Read Time",   "ind", "r/ms",          XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
 
590
        { XT_STAT_IND_READ_TIME,        "Index Read Time",      "ind", "r/ms",          XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
591
591
                "The time in %sseconds to read index files" },
592
592
        { XT_STAT_LOG_READ_TIME,        "Log Read Time",        "log", "r/ms",          XT_STAT_ACCUMULATIVE | XT_STAT_TIME_VALUE,
593
593
                "The time in %sseconds to read index, transaction and data log files" },