diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-05-29 23:54:25 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-06-04 12:32:23 +0200 |
commit | c9061d11022d8fc7274510b04d48bf3f164ebf96 (patch) | |
tree | a259f436b0ffe9b61aaf4185f809005796065fd7 /sql/opt_sum.cc | |
parent | 37659ef43be689b2a2f8c507d9395e839bf66066 (diff) | |
download | mariadb-git-c9061d11022d8fc7274510b04d48bf3f164ebf96.tar.gz |
mysys: rename ME_xxx flags to match plugin api
Diffstat (limited to 'sql/opt_sum.cc')
-rw-r--r-- | sql/opt_sum.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_sum.cc b/sql/opt_sum.cc index 82946709166..ecede5903a2 100644 --- a/sql/opt_sum.cc +++ b/sql/opt_sum.cc @@ -318,7 +318,7 @@ int opt_sum_query(THD *thd, error= tl->table->file->info(HA_STATUS_VARIABLE | HA_STATUS_NO_LOCK); if (unlikely(error)) { - tl->table->file->print_error(error, MYF(ME_FATALERROR)); + tl->table->file->print_error(error, MYF(ME_FATAL)); DBUG_RETURN(error); } count*= tl->table->file->stats.records; |