Commit ad2508ea authored by Sergei Golubchik's avatar Sergei Golubchik

moved ha_maria::implicit_commit() calls around

parent 575c7f83
...@@ -280,8 +280,8 @@ static int bad_ptr(const char *where, void *ptr) ...@@ -280,8 +280,8 @@ static int bad_ptr(const char *where, void *ptr)
magicend[2] != MAGICEND2 || magicend[2] != MAGICEND2 ||
magicend[3] != MAGICEND3) magicend[3] != MAGICEND3)
{ {
warn("Error: %s overrun buffer", where); warn("Error: %s overrun buffer ", where);
fprintf(stderr, ", allocated at "); fprintf(stderr, "Allocated at ");
print_stack(irem->frame); print_stack(irem->frame);
return 1; return 1;
} }
......
...@@ -1454,11 +1454,6 @@ void close_thread_tables(THD *thd) ...@@ -1454,11 +1454,6 @@ void close_thread_tables(THD *thd)
TABLE *table; TABLE *table;
DBUG_ENTER("close_thread_tables"); DBUG_ENTER("close_thread_tables");
#ifdef WITH_ARIA_STORAGE_ENGINE
if (!thd->in_sub_stmt)
ha_maria::implicit_commit(thd, FALSE);
#endif
#ifdef EXTRA_DEBUG #ifdef EXTRA_DEBUG
DBUG_PRINT("tcache", ("open tables:")); DBUG_PRINT("tcache", ("open tables:"));
for (table= thd->open_tables; table; table= table->next) for (table= thd->open_tables; table; table= table->next)
......
...@@ -1052,10 +1052,14 @@ bool dispatch_command(enum enum_server_command command, THD *thd, ...@@ -1052,10 +1052,14 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
! thd->is_error()) ! thd->is_error())
{ {
/* /*
Multiple queries exits, execute them individually Multiple queries exist, execute them individually
*/ */
char *beginning_of_next_stmt= (char*) parser_state.m_lip.found_semicolon; char *beginning_of_next_stmt= (char*) parser_state.m_lip.found_semicolon;
#ifdef WITH_ARIA_STORAGE_ENGINE
ha_maria::implicit_commit(thd, FALSE);
#endif
/* Finalize server status flags after executing a statement. */ /* Finalize server status flags after executing a statement. */
thd->update_server_status(); thd->update_server_status();
thd->protocol->end_statement(); thd->protocol->end_statement();
...@@ -4473,6 +4477,9 @@ case SQLCOM_PREPARE: ...@@ -4473,6 +4477,9 @@ case SQLCOM_PREPARE:
trans_commit_stmt(thd); trans_commit_stmt(thd);
thd->stmt_da->can_overwrite_status= FALSE; thd->stmt_da->can_overwrite_status= FALSE;
} }
#ifdef WITH_ARIA_STORAGE_ENGINE
ha_maria::implicit_commit(thd, FALSE);
#endif
} }
lex->unit.cleanup(); lex->unit.cleanup();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment