~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-01 02:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1084.
  • Revision ID: osullivan.padraig@gmail.com-20090701020137-j6x95t1nuvq20kzk
Extracted the SCHEMATA table into the I_S plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  FIND_FILES_DIR
50
50
};
51
51
 
 
52
typedef struct st_lookup_field_values
 
53
{
 
54
  LEX_STRING db_value, table_value;
 
55
  bool wild_db_value, wild_table_value;
 
56
} LOOKUP_FIELD_VALUES;
 
57
 
52
58
find_files_result find_files(Session *session, List<LEX_STRING> *files, const char *db,
53
59
                             const char *path, const char *wild, bool dir);
54
 
 
 
60
bool calc_lookup_values_from_cond(Session *session, COND *cond, TableList *table,
 
61
                                  LOOKUP_FIELD_VALUES *lookup_field_vals);
 
62
bool get_lookup_field_values(Session *session, COND *cond, TableList *tables,
 
63
                             LOOKUP_FIELD_VALUES *lookup_field_values);
 
64
int make_db_list(Session *session, List<LEX_STRING> *files,
 
65
                 LOOKUP_FIELD_VALUES *lookup_field_vals,
 
66
                 bool *with_i_schema);
55
67
 
56
68
int store_create_info(TableList *table_list, String *packet, HA_CREATE_INFO  *create_info_arg);
57
69
bool store_db_create_info(const char *dbname, String *buffer, HA_CREATE_INFO *create_info);