diff options
author | unknown <monty@hundin.mysql.fi> | 2001-06-02 00:03:16 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-06-02 00:03:16 +0300 |
commit | 7c077e68f663e082924a359ecd3cfdfdedd88967 (patch) | |
tree | daa8be0909526f70ad0e41daf9d281673f2ca826 /libmysql | |
parent | 455b6952d60c07245d604b2f3fd7d41a63fa89ae (diff) | |
download | mariadb-git-7c077e68f663e082924a359ecd3cfdfdedd88967.tar.gz |
Fixed bug that caused client to hang because mysqld never did send an
error message if the table open or the index creation failed.
Updated portuguese error messages.
Fix for OS/2 that affected CHECK TABLE.
Docs/manual.texi:
Changelog.
libmysql/errmsg.c:
Updated portuguese error messages
mysys/my_copy.c:
Fix for OS/2
sql/net_pkg.cc:
cleanup
sql/share/portuguese/errmsg.txt:
Updated portuguese error messages
sql/slave.cc:
Cleanup.
Fixed bug that caused client to hang because mysqld never did
send an error message if the table open or the index creation failed.
sql/sql_parse.cc:
Moved handling of 'no_send_ok' to fetch_nx_table.
sql/sql_table.cc:
Cleanup.
Diffstat (limited to 'libmysql')
-rw-r--r-- | libmysql/errmsg.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libmysql/errmsg.c b/libmysql/errmsg.c index 711228e459d..67cfe874f77 100644 --- a/libmysql/errmsg.c +++ b/libmysql/errmsg.c @@ -48,6 +48,34 @@ const char *client_errors[]= "Got packet bigger than 'max_allowed_packet'" }; +/* Start of code added by Roberto M. Serqueira - martinsc@uol.com.br - 05.24.2001 */ + +#elif defined PORTUGUESE +const char *client_errors[]= +{ + "Erro desconhecido do MySQL", + "Não pode criar 'UNIX socket' (%d)", + "Não pode se conectar ao servidor MySQL local através do 'socket' '%-.64s' (%d)", + "Não pode se conectar ao servidor MySQL em '%-.64s' (%d)", + "Não pode criar 'socket TCP/IP' (%d)", + "'Host' servidor MySQL '%-.64s' (%d) desconhecido", + "Servidor MySQL desapareceu", + "Incompatibilidade de protocolos. Versão do Servidor: %d - Versão do Cliente: %d", + "Cliente do MySQL com falta de memória", + "Informação inválida de 'host'", + "Localhost via 'UNIX socket'", + "%-.64s via 'TCP/IP'", + "Erro na negociação de acesso ao servidor", + "Conexão perdida com servidor MySQL durante 'query'", + "Comandos fora de sincronismo. Você não pode executar este comando agora", + "%-.64s via 'named pipe'", + "Não pode esperar pelo 'named pipe' para o 'host' %-.64s - 'pipe' %-.32s (%lu)", + "Não pode abrir 'named pipe' para o 'host' %-.64s - 'pipe' %-.32s (%lu)", + "Não pode estabelecer o estado do 'named pipe' para o 'host' %-.64s - 'pipe' %-.32s (%lu)", + "Não pode inicializar conjunto de caracteres %-.64s (caminho %-.64s)", + "Obteve pacote maior do que 'max_allowed_packet'" +}; + #else /* ENGLISH */ const char *client_errors[]= { |