~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/server_includes.h

  • Committer: Monty Taylor
  • Date: 2008-12-06 07:22:02 UTC
  • mto: (656.1.7 devel) (660.1.5 codestyle)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: monty@inaugust.com-20081206072202-2g25o9doqr1l8euu
OOOh doggie. Got rid of my_alloca.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
void dump_TableList_graph(SELECT_LEX *select_lex, TableList* tl);
69
69
void mysql_print_status();
70
70
 
71
 
/* key.cc */
72
 
int find_ref_key(KEY *key, uint32_t key_count, unsigned char *record, Field *field,
73
 
                 uint32_t *key_length, uint32_t *keypart);
74
 
void key_copy(unsigned char *to_key, unsigned char *from_record, KEY *key_info, uint32_t key_length);
75
 
void key_restore(unsigned char *to_record, unsigned char *from_key, KEY *key_info,
76
 
                 uint16_t key_length);
77
 
void key_zero_nulls(unsigned char *tuple, KEY *key_info);
78
 
bool key_cmp_if_same(Table *form,const unsigned char *key,uint32_t index,uint32_t key_length);
79
 
void key_unpack(String *to,Table *form,uint32_t index);
80
 
bool is_key_used(Table *table, uint32_t idx, const MY_BITMAP *fields);
81
 
int key_cmp(KEY_PART_INFO *key_part, const unsigned char *key, uint32_t key_length);
82
 
extern "C" int key_rec_cmp(void *key_info, unsigned char *a, unsigned char *b);
83
71
 
84
72
bool init_errmessage(void);
85
73
File open_binlog(IO_CACHE *log, const char *log_file_name,