#include "mysql_priv.h"#include "rpl_filter.h"Include dependency graph for rpl_filter.cc:

Go to the source code of this file.
Defines | |
| #define | TABLE_RULE_HASH_SIZE 16 |
| #define | TABLE_RULE_ARR_SIZE 16 |
Functions | |
| static byte * | get_table_key (const byte *a, uint *len, my_bool __attribute__((unused))) |
| static void | free_table_ent (void *a) |
| #define TABLE_RULE_ARR_SIZE 16 |
| #define TABLE_RULE_HASH_SIZE 16 |
| static void free_table_ent | ( | void * | a | ) | [static] |
Definition at line 377 of file rpl_filter.cc.
References e, my_free, and MYF.
00378 { 00379 TABLE_RULE_ENT *e= (TABLE_RULE_ENT *) a; 00380 00381 my_free((gptr) e, MYF(0)); 00382 }
Definition at line 367 of file rpl_filter.cc.
References e.
00369 { 00370 TABLE_RULE_ENT *e= (TABLE_RULE_ENT *) a; 00371 00372 *len= e->key_len; 00373 return (byte*)e->db; 00374 }
1.4.7

