~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.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:
34
34
#include "drizzled/sql_parse.h"
35
35
#include "drizzled/plugin.h"
36
36
 
 
37
namespace drizzled
 
38
{
 
39
 
37
40
/* Forward declarations */
38
41
class String;
39
42
class JOIN;
41
44
struct st_ha_create_information;
42
45
typedef st_ha_create_information HA_CREATE_INFO;
43
46
struct TableList;
44
 
namespace drizzled
45
 
{
 
47
 
46
48
namespace plugin
47
49
{
48
50
  class InfoSchemaTable;
49
51
}
50
 
}
 
52
 
51
53
 
52
54
class Table;
53
55
typedef class Item COND;
67
69
 
68
70
bool calc_lookup_values_from_cond(Session *session, COND *cond, TableList *table,
69
71
                                  LOOKUP_FIELD_VALUES *lookup_field_vals,
70
 
                                  drizzled::plugin::InfoSchemaTable *schema_table);
 
72
                                  plugin::InfoSchemaTable *schema_table);
71
73
bool get_lookup_field_values(Session *session, COND *cond, TableList *tables,
72
74
                             LOOKUP_FIELD_VALUES *lookup_field_values,
73
 
                             drizzled::plugin::InfoSchemaTable *schema_table);
 
75
                             plugin::InfoSchemaTable *schema_table);
74
76
int make_db_list(Session *session, std::vector<LEX_STRING*> &files,
75
77
                 LOOKUP_FIELD_VALUES *lookup_field_vals, bool *with_i_schema);
76
78
SHOW_VAR *getFrontOfStatusVars();
105
107
void free_status_vars();
106
108
void reset_status_vars();
107
109
 
 
110
} /* namespace drizzled */
 
111
 
108
112
#endif /* DRIZZLED_SHOW_H */