~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/system_table_ms.h

  • 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:
179
179
        virtual void seqScanInit() { }
180
180
        virtual bool seqScanNext(char *buf) { UNUSED(buf); return false; }
181
181
        virtual int     getRefLen() { return 0; }
182
 
        virtual void seqScanPos(uint8_t *pos) { UNUSED(pos);}
183
 
        virtual void seqScanRead(uint8_t *pos , char *buf) {UNUSED(pos);UNUSED(buf); }
 
182
        virtual void seqScanPos(unsigned char *pos) { UNUSED(pos);}
 
183
        virtual void seqScanRead(unsigned char *pos , char *buf) {UNUSED(pos);UNUSED(buf); }
184
184
        virtual void insertRow(char *buf) {UNUSED(buf); }
185
185
        virtual void deleteRow(char *buf) {UNUSED(buf);  }
186
186
        virtual void updateRow(char *old_data, char *new_data) {UNUSED(old_data);UNUSED(new_data); }
224
224
        virtual void seqScanInit();
225
225
        virtual bool seqScanNext(char *buf);
226
226
        virtual int     getRefLen();
227
 
        virtual void seqScanPos(uint8_t *pos);
 
227
        virtual void seqScanPos(unsigned char *pos);
228
228
        virtual void seqScanRead(uint32_t repo, uint64_t offset, char *buf);
229
 
        virtual void seqScanRead(uint8_t *pos, char *buf);
 
229
        virtual void seqScanRead(unsigned char *pos, char *buf);
230
230
 
231
231
        friend class MSReferenceTable;
232
232
        friend class MSBlobDataTable;
277
277
        void unuse();
278
278
        void seqScanInit();
279
279
        int     getRefLen();
280
 
        void seqScanPos(uint8_t *pos);
 
280
        void seqScanPos(unsigned char *pos);
281
281
        virtual void seqScanRead(uint32_t repo, uint64_t offset, char *buf) { return MSRepositoryTable::seqScanRead(repo, offset, buf);}
282
 
        void seqScanRead(uint8_t *pos, char *buf);
 
282
        void seqScanRead(unsigned char *pos, char *buf);
283
283
        bool seqScanNext(char *buf);
284
284
 
285
285
private:
318
318
        void unuse();
319
319
        void seqScanInit();
320
320
        int     getRefLen();
321
 
        void seqScanPos(uint8_t *pos);
 
321
        void seqScanPos(unsigned char *pos);
322
322
        virtual void seqScanRead(uint32_t repo, uint64_t offset, char *buf) { return MSRepositoryTable::seqScanRead(repo, offset, buf);}
323
 
        void seqScanRead(uint8_t *pos, char *buf);
 
323
        void seqScanRead(unsigned char *pos, char *buf);
324
324
        bool seqScanNext(char *buf);
325
325
        void insertRow(char *buf);
326
326
        void deleteRow(char *buf);