~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2011-03-11 18:48:55 UTC
  • mfrom: (2228.1.8 build)
  • Revision ID: mordred@inaugust.com-20110311184855-1essd3a6xfr7lx6r
Merged Andrew: drizzledump and docs bug fixes
Merged Barry: pbms bugfixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
598
598
        return_(true);
599
599
}
600
600
 
601
 
void MSVariableTable::seqScanPos(uint8_t *pos)
 
601
void MSVariableTable::seqScanPos(unsigned char *pos)
602
602
{
603
603
        int32_t index = iVariableIndex -1;
604
604
        if (index < 0)
607
607
        mi_int4store(pos, index);
608
608
}
609
609
 
610
 
void MSVariableTable::seqScanRead(uint8_t *pos, char *buf)
 
610
void MSVariableTable::seqScanRead(unsigned char *pos, char *buf)
611
611
{
612
612
        iVariableIndex = mi_uint4korr(pos);
613
613
        seqScanNext(buf);