~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Brian Aker
  • Date: 2011-02-09 22:48:12 UTC
  • mto: (2154.2.1 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110209224812-n7f7as4eflzk2r7l
Merge in header fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
#include "drizzled/charset.h"
47
47
#include "drizzled/internal/m_string.h"
48
48
#include "plugin/myisam/myisam.h"
 
49
#include "drizzled/plugin/storage_engine.h"
49
50
 
50
51
#include <drizzled/item/string.h>
51
52
#include <drizzled/item/int.h>
1762
1763
  return getShare()->getVersion() != refresh_version;
1763
1764
}
1764
1765
 
 
1766
uint32_t Table::index_flags(uint32_t idx) const
 
1767
{
 
1768
  return getShare()->getEngine()->index_flags(getShare()->getKeyInfo(idx).algorithm);
 
1769
}
 
1770
 
 
1771
void Table::print_error(int error, myf errflag) const
 
1772
{
 
1773
  getShare()->getEngine()->print_error(error, errflag, *this);
 
1774
}
 
1775
 
1765
1776
} /* namespace drizzled */