summaryrefslogtreecommitdiff
path: root/sql/item_create.cc
diff options
context:
space:
mode:
authorunknown <cbell/Chuck@suse.vabb.com>2006-12-07 09:18:35 -0500
committerunknown <cbell/Chuck@suse.vabb.com>2006-12-07 09:18:35 -0500
commit85a8f7c7a9bf8e067500a78899874f1298e2bdf4 (patch)
treec08b6d74a80b3c187b4d906a036d251117a9fc60 /sql/item_create.cc
parentd3f711fafc4928f941b8fc2fbceed5109b5d8bde (diff)
downloadmariadb-git-85a8f7c7a9bf8e067500a78899874f1298e2bdf4.tar.gz
WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
Please see worklog for details on files changed. BitKeeper/deleted/.del-have_row_based.require: Delete: mysql-test/r/have_row_based.require BitKeeper/deleted/.del-not_row_based.require: Delete: mysql-test/r/not_row_based.require BitKeeper/deleted/.del-have_row_based.inc: Delete: mysql-test/include/have_row_based.inc BitKeeper/deleted/.del-not_row_based.inc: Delete: mysql-test/include/not_row_based.inc BitKeeper/deleted/.del-replication.m4: Delete: config/ac-macros/replication.m4
Diffstat (limited to 'sql/item_create.cc')
-rw-r--r--sql/item_create.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/sql/item_create.cc b/sql/item_create.cc
index 7722ce28d4a..05802a22b9c 100644
--- a/sql/item_create.cc
+++ b/sql/item_create.cc
@@ -2288,9 +2288,7 @@ Create_udf_func::create(THD *thd, udf_func *udf, List<Item> *item_list)
if (item_list != NULL)
arg_count= item_list->elements;
-#ifdef HAVE_ROW_BASED_REPLICATION
thd->lex->binlog_row_based_if_mixed= TRUE;
-#endif
DBUG_ASSERT( (udf->type == UDFTYPE_FUNCTION)
|| (udf->type == UDFTYPE_AGGREGATE));
@@ -4446,9 +4444,7 @@ Create_func_uuid Create_func_uuid::s_singleton;
Item*
Create_func_uuid::create(THD *thd)
{
-#ifdef HAVE_ROW_BASED_REPLICATION
thd->lex->binlog_row_based_if_mixed= TRUE;
-#endif
return new (thd->mem_root) Item_func_uuid();
}