~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/table.cc

  • Committer: Mark Atwood
  • Date: 2011-10-27 05:08:12 UTC
  • mfrom: (2445.1.11 rf)
  • Revision ID: me@mark.atwood.name-20111027050812-1icvs72lb0u4xdc4
mergeĀ lp:~olafvdspek/drizzle/refactor8

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include "config.h"
 
21
#include <config.h>
22
22
 
23
 
#include "drizzled/generator/table.h"
 
23
#include <drizzled/generator/table.h>
24
24
 
25
25
using namespace std;
26
26
 
29
29
namespace generator
30
30
{
31
31
 
32
 
Table::Table(Session &arg, const SchemaIdentifier &schema_identifier) :
 
32
Table::Table(Session &arg, const identifier::Schema &schema_identifier) :
33
33
  session(arg)
34
34
{
35
35
  plugin::StorageEngine::getIdentifiers(session, schema_identifier, table_names);