~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tables.cc

  • Committer: Brian Aker
  • Date: 2010-03-02 07:03:12 UTC
  • mfrom: (1309.2.10 drizzle-build)
  • Revision ID: brian@gaz-20100302070312-u8xyk09u2970pgzp
Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include "config.h"
22
22
#include "plugin/schema_dictionary/dictionary.h"
23
 
 
24
 
namespace drizzled
25
 
{
26
 
extern size_t build_table_filename(char *buff,
27
 
                                   size_t bufflen,
28
 
                                   const char *db,
29
 
                                   const char *table_name,
30
 
                                   bool is_tmp);
31
 
}
 
23
#include "drizzled/table_identifier.h"
32
24
 
33
25
using namespace std;
34
26
using namespace drizzled;
57
49
static const string TIMESTAMP("TIMESTAMP");
58
50
static const string DATETIME("DATETIME");
59
51
 
60
 
 
61
52
TablesTool::TablesTool() :
62
53
  SchemasTool("TABLES")
63
54
{
261
252
  push(table_proto.options().comment());
262
253
}
263
254
 
264
 
bool TableNames::Generator::checkSchema()
 
255
bool ShowTables::Generator::checkSchema()
265
256
{
266
257
  Session *session= current_session;
267
258