summaryrefslogtreecommitdiff
path: root/sql/sql_trigger.h
diff options
context:
space:
mode:
authorsergefp@mysql.com <>2005-08-03 03:47:07 +0000
committersergefp@mysql.com <>2005-08-03 03:47:07 +0000
commitf595847ec08e59199302b22ff71e63ce3164a809 (patch)
tree551d1a44fe7c14ba73b87378e84fb04d7228ab30 /sql/sql_trigger.h
parent2b70615913c3369867932011728d320e4a5a1a0b (diff)
parentb6a6fe0849a3cba46c4ed6446612bfdb29d162ba (diff)
downloadmariadb-git-f595847ec08e59199302b22ff71e63ce3164a809.tar.gz
Manual merge
Diffstat (limited to 'sql/sql_trigger.h')
-rw-r--r--sql/sql_trigger.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_trigger.h b/sql/sql_trigger.h
index ede2cb39f0e..e2ed4bcc0f4 100644
--- a/sql/sql_trigger.h
+++ b/sql/sql_trigger.h
@@ -82,7 +82,7 @@ public:
if (bodies[event][time_type])
{
- bool save_in_sub_stmt= thd->transaction.in_sub_stmt;
+ bool save_in_sub_stmt= thd->in_sub_stmt;
#ifndef EMBEDDED_LIBRARY
/* Surpress OK packets in case if we will execute statements */
my_bool nsok= thd->net.no_send_ok;
@@ -111,11 +111,11 @@ public:
does NOT go into binlog.
*/
tmp_disable_binlog(thd);
- thd->transaction.in_sub_stmt= TRUE;
+ thd->in_sub_stmt= TRUE;
res= bodies[event][time_type]->execute_function(thd, 0, 0, 0);
- thd->transaction.in_sub_stmt= save_in_sub_stmt;
+ thd->in_sub_stmt= save_in_sub_stmt;
reenable_binlog(thd);
#ifndef EMBEDDED_LIBRARY