diff options
author | Jan Lindström <jan.lindstrom@mariadb.com> | 2015-09-14 08:27:14 +0300 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2015-09-14 08:27:36 +0300 |
commit | d581ef5b2c68465815d78548357e3e104e39f5d6 (patch) | |
tree | 97a63640fd5aea58652f6121135442607b8a1ff7 /storage/innobase/include/db0err.h | |
parent | 27ec0e159b05155ee92aaabe9466d78ef3a26712 (diff) | |
download | mariadb-git-d581ef5b2c68465815d78548357e3e104e39f5d6.tar.gz |
MDEV-8764: Wrong error when encrypted table can't be decrypted.
Add a new error message when table is encrypted but decryption
fails. Use this new error message on InnoDB/XtraDB.
Diffstat (limited to 'storage/innobase/include/db0err.h')
-rw-r--r-- | storage/innobase/include/db0err.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/include/db0err.h b/storage/innobase/include/db0err.h index 24889a9b9c5..feac81af98e 100644 --- a/storage/innobase/include/db0err.h +++ b/storage/innobase/include/db0err.h @@ -133,8 +133,8 @@ enum dberr_t { /*< Too many words in a phrase */ DB_TOO_BIG_FOR_REDO, /* Record length greater than 10% of redo log */ - DB_ENCRYPTED_DECRYPT_FAILED, /* Tablespace encrypted and - decrypt operaton failed because + DB_DECRYPTION_FAILED, /* Tablespace encrypted and + decrypt operation failed because of missing key management plugin, or missing or incorrect key or incorret AES method or algorithm. */ |