~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_tblmap.cc

  • Committer: Stewart Smith
  • Date: 2008-09-15 07:13:59 UTC
  • mfrom: (383.1.21 drizzle)
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080915071359-f8bznznyaiqrtqxa
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include "mysql_priv.h"
 
16
#include <drizzled/server_includes.h>
17
17
 
18
18
#ifdef HAVE_REPLICATION
19
19
 
46
46
  free_root(&m_mem_root, MYF(0));
47
47
}
48
48
 
49
 
st_table* table_mapping::get_table(ulong table_id)
 
49
Table* table_mapping::get_table(ulong table_id)
50
50
{
51
51
  entry *e= find_entry(table_id);
52
52
  if (e) 
83
83
  return 0;
84
84
}
85
85
 
86
 
int table_mapping::set_table(ulong table_id, TABLE* table)
 
86
int table_mapping::set_table(ulong table_id, Table* table)
87
87
{
88
88
  entry *e= find_entry(table_id);
89
89
  if (e == 0)