diff options
author | unknown <serg@serg.mysql.com> | 2003-01-28 17:42:08 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2003-01-28 17:42:08 +0100 |
commit | 73284c938465e9266ca7456e8b1112e2bbc1d9a5 (patch) | |
tree | 37e31feff36633416e5c16cb0499afefcd9336c4 /sql/ha_myisam.cc | |
parent | a29d85072d7f6cd45586e0931affd053a1db94bd (diff) | |
download | mariadb-git-73284c938465e9266ca7456e8b1112e2bbc1d9a5.tar.gz |
low-level error messages cleanup
extra/perror.c:
error messages fixups
include/my_base.h:
error codes fixups
myisam/mi_open.c:
correct error reported
myisam/myisamchk.c:
correct error reported
myisammrg/myrg_open.c:
correct error reported
sql/ha_innodb.cc:
correct error reported
sql/ha_isam.cc:
reorder table file extensions to get better error on "cannot open the table"
sql/ha_myisam.cc:
reorder table file extensions to get better error on "cannot open the table"
sql/ha_myisammrg.cc:
correct error reported
sql/handler.cc:
correct error reported
Diffstat (limited to 'sql/ha_myisam.cc')
-rw-r--r-- | sql/ha_myisam.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc index 19e97c60dd3..81b04cf5ba7 100644 --- a/sql/ha_myisam.cc +++ b/sql/ha_myisam.cc @@ -117,7 +117,7 @@ void mi_check_print_warning(MI_CHECK *param, const char *fmt,...) } const char **ha_myisam::bas_ext() const -{ static const char *ext[]= { ".MYD",".MYI", NullS }; return ext; } +{ static const char *ext[]= { ".MYI",".MYD", NullS }; return ext; } const char *ha_myisam::index_type(uint key_number) |