~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/info_schema_table.h

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include <set>
31
31
#include <algorithm>
32
32
 
 
33
namespace drizzled
 
34
{
33
35
class Session;
34
36
class TableList;
35
37
class Table;
38
40
 
39
41
extern const std::string INFORMATION_SCHEMA_NAME;
40
42
 
41
 
namespace drizzled
42
 
{
43
43
namespace plugin
44
44
{
45
45
 
555
555
   */
556
556
  void addRow(unsigned char *buf, size_t len)
557
557
  {
558
 
    uint32_t cs= drizzled::algorithm::crc32((const char *) buf, len);
 
558
    uint32_t cs= algorithm::crc32((const char *) buf, len);
559
559
    Rows::iterator it= std::find_if(rows.begin(),
560
560
                                    rows.end(),
561
561
                                    FindRowByChecksum(cs));