MySQL Forums
Forum List  »  Router & Proxy

Proxy crash
Posted by: John Kienitz
Date: May 13, 2008 04:06PM

.I am using the mysql-connector-java-5.1.6 to connect to a MySQL server;

MySQL Server Information
--------------------------------------------------------------------------------
Connected to MySQL Server Instance
Username: root
Hostname: localhost
Port: 3306
--------------------------------------------------------------------------------
Server Information
MySQL Version: MySQL 5.0.51a-community-nt-log via TCP/IP
Network Name: localhost
IP: 127.0.0.1
--------------------------------------------------------------------------------
Client Information
Version: MySQL Client Version 5.1.11
Network Name: JohnK
IP: 10.0.0.66
Operating System: Windows XP
Hardware: 2x Intel(R) Core(TM)2 Duo CPU E6750 @ 2.66GHz, 2.0 GB RAM

I Installed this instance of the MySQL server as a database server in the installer, default lannguage UTF-8.

The only change I have made to install configuration is to set
lower_case_table_names=1
in the my.ini file.

The application seems to be working. When I inject MySQL Proxy, it crashes with the following error:

C:\Program Files\MySQL\mysql-proxy-0.6.1-win32-x86
16:22:24.54>mysql-proxy --proxy-fix-bug-25371 --proxy-lua-script=logs.lua
file \cygwin\home\mysqldev\mysql-proxy\src\mysql-proxy-0.6.1\src\network-mysqld-
proxy.c: line 1845: assertion failed: (off + field_len <= packet->len + NET_HEAD
ER_SIZE)


I took a quick look at the source. I don't think I should be hitting the packet size limit it
refers to.

} else {
/**
* @todo we only support fields in the row-iterator < 16M (packet-len)
*/
g_assert(field_len <= packet->len + NET_HEADER_SIZE);
g_assert(off + field_len <= packet->len + NET_HEADER_SIZE);


Any suggestions on how I can track down what is going on here?

Thanks.

Options: ReplyQuote


Subject
Views
Written By
Posted
Proxy crash
3342
May 13, 2008 04:06PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.