~barry-leslie/pbms/with_backup

« back to all changes in this revision

Viewing changes to src/system_tables/system_table_ms.h

  • Committer: Barry.Leslie at PrimeBase
  • Date: 2011-04-19 20:30:56 UTC
  • Revision ID: barry.leslie@primebase.com-20110419203056-te9zegmazips45rv
Added dupport for handler records() method and simplified MySQL patch code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
 
184
184
        virtual void use() { }
185
185
        virtual void unuse() { }
 
186
        virtual uint64_t records() {return 0;}
186
187
        virtual void backupSeqScanInit() { }
187
188
        virtual void seqScanInit() { }
188
189
        virtual bool seqScanNext(char *buf) { UNUSED(buf); return false; }
258
259
        static void releaseSystemTable(MSOpenSystemTable *tab);
259
260
 
260
261
        static MSSystemTableShare *newTableShare(CSString *table_path);
 
262
        
 
263
        static bool hasRecords(const char *table_name);
 
264
 
261
265
};
262
266
 
263
267
#endif