Bug #34157 | tutorial-warnings.lua uses wrong array indices | ||
---|---|---|---|
Submitted: | 30 Jan 2008 3:29 | Modified: | 3 Jun 2009 13:27 |
Reporter: | Jess Balint | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Proxy: Scripts | Severity: | S3 (Non-critical) |
Version: | 0.6.0, 0.6.1, r369 | OS: | Any (MS Windows, Mac) |
Assigned to: | CPU Architecture: | Any | |
Tags: | Contribution |
[30 Jan 2008 3:29]
Jess Balint
[29 Apr 2008 21:10]
Sveta Smirnova
Thank you for the report. Verified as described.
[3 Jun 2009 13:27]
Kay Roepke
We believe this issue has been address in the latest version (0.7.1) of MySQL Proxy. Output shown is: classdump:trunk kroepke$ ./sbin/mysql-proxy --proxy-lua-script=share/doc/mysql-proxy/tutorial-warnings.lua Query had warnings: create table z2 (x int ) engine=zombo warning: [1286] Warning warning: [1266] Warning The MySQL client application sees: mysql> create table z2 (x int ) engine=zombo; Query OK, 0 rows affected, 2 warnings (0.06 sec) mysql> show warnings; +---------+------+--------------------------------------------+ | Level | Code | Message | +---------+------+--------------------------------------------+ | Warning | 1286 | Unknown table engine 'zombo' | | Warning | 1266 | Using storage engine MyISAM for table 'z2' | +---------+------+--------------------------------------------+ 2 rows in set (0.00 sec)