diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 23:27:07 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 23:27:07 +0200 |
commit | 3ad01d00f2eaef56ed06041f7ac26328e998155b (patch) | |
tree | 5706c35dec4d795803c282e6a9c2feba566e0d6c /storage/sphinx | |
parent | ffbd15eb3242ab9b003c025925a462b5bd24a761 (diff) | |
download | mariadb-git-3ad01d00f2eaef56ed06041f7ac26328e998155b.tar.gz |
error messages: name the storage engine explicitly,
instead of "used storage engine" and similar changes.
Diffstat (limited to 'storage/sphinx')
-rw-r--r-- | storage/sphinx/ha_sphinx.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/sphinx/ha_sphinx.cc b/storage/sphinx/ha_sphinx.cc index 94940e0b82f..23bf21b6cbe 100644 --- a/storage/sphinx/ha_sphinx.cc +++ b/storage/sphinx/ha_sphinx.cc @@ -3424,7 +3424,8 @@ int ha_sphinx::create ( const char * name, TABLE * table, HA_CREATE_INFO * ) // report and bail if ( sError[0] ) { - my_error ( ER_CANT_CREATE_TABLE, MYF(0), sError, -1 ); + my_error ( ER_CANT_CREATE_TABLE, MYF(0), + table->s->db.str, table->s->table_name, sError ); SPH_RET(-1); } |