~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Brian Aker
  • Date: 2008-11-25 15:24:22 UTC
  • Revision ID: brian@tangent.org-20081125152422-6hchtchktzd2lnjf
Remove filtering (wrong layer, belongs in plugin).

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
*/
25
25
 
26
26
#include <drizzled/server_includes.h>
27
 
#include <drizzled/replication/filter.h>
 
27
#include <libdrizzle/libdrizzle.h>
 
28
#include <mysys/hash.h>
28
29
#include <drizzled/error.h>
29
30
#include <drizzled/gettext.h>
30
31
#include <drizzled/data_home.h>
4288
4289
{
4289
4290
  if (table->s->cached_row_logging_check == -1)
4290
4291
  {
4291
 
    int const check(table->s->tmp_table == NO_TMP_TABLE &&
4292
 
                    binlog_filter->db_ok(table->s->db.str));
 
4292
    int const check(table->s->tmp_table == NO_TMP_TABLE);
4293
4293
    table->s->cached_row_logging_check= check;
4294
4294
  }
4295
4295