diff options
author | unknown <bell@sanja.is.com.ua> | 2004-11-14 00:28:44 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-11-14 00:28:44 +0200 |
commit | c637cf62621fe13f81e0e03ae19ea8b9d5a474f2 (patch) | |
tree | cf8cf859a88aa2631e4a78f605e9ac304eea406f /sql/handler.cc | |
parent | 9a837b1383c65687513ed6d6912ee74bcf13b5e9 (diff) | |
download | mariadb-git-c637cf62621fe13f81e0e03ae19ea8b9d5a474f2.tar.gz |
make information schema libmysqld compatible
fixed typo
sql/handler.cc:
fixed typo
sql/sql_acl.cc:
make information schema libmysqld compatible
Diffstat (limited to 'sql/handler.cc')
-rw-r--r-- | sql/handler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index e65fd6d097d..12820a66cb9 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -517,8 +517,8 @@ int ha_commit_trans(THD *thd, THD_TRANS* trans) if ((error=ndbcluster_commit(thd,trans->ndb_tid))) { if (error == -1) - my_message_(ER_ERROR_DURING_COMMIT, ER(ER_ERROR_DURING_COMMIT), - MYF(0)); + my_message(ER_ERROR_DURING_COMMIT, ER(ER_ERROR_DURING_COMMIT), + MYF(0)); error=1; } if (trans == &thd->transaction.all) |