diff options
Diffstat (limited to 'sql/transaction.h')
-rw-r--r-- | sql/transaction.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/transaction.h b/sql/transaction.h index 90de11aabe3..b6b22053150 100644 --- a/sql/transaction.h +++ b/sql/transaction.h @@ -34,9 +34,9 @@ bool trans_rollback_implicit(THD *thd); bool trans_commit_stmt(THD *thd); bool trans_rollback_stmt(THD *thd); -bool trans_savepoint(THD *thd, LEX_STRING name); -bool trans_rollback_to_savepoint(THD *thd, LEX_STRING name); -bool trans_release_savepoint(THD *thd, LEX_STRING name); +bool trans_savepoint(THD *thd, LEX_CSTRING name); +bool trans_rollback_to_savepoint(THD *thd, LEX_CSTRING name); +bool trans_release_savepoint(THD *thd, LEX_CSTRING name); bool trans_xa_start(THD *thd); bool trans_xa_end(THD *thd); |