| Bug #19483 | missing quote causes loop | ||
|---|---|---|---|
| Submitted: | 2 May 2006 15:34 | Modified: | 2 May 2006 15:41 |
| Reporter: | wally piechocki | Email Updates: | |
| Status: | Can't repeat | Impact on me: | |
| Category: | MySQL Server | Severity: | S1 (Critical) |
| Version: | Server version: 4.0.24 | OS: | Linux (linux) |
| Assigned to: | MySQL Verification Team | CPU Architecture: | Any |
[2 May 2006 15:34]
wally piechocki
[2 May 2006 15:41]
MySQL Verification Team
Thank you for the bug report. I was unable to repeat the behavior
reported on current source server. The mysql client behaves as
mentioned in our Manual:
miguel@hegel:~/dbs/4.0> bin/mysql -uroot test
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.0.27-debug-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> CREATE TABLE `test_table` (
-> `val1` int(4) NOT NULL auto_increment,
-> `val2` varchar(50) NOT NULL default '',
-> `val3` varchar(50) NOT NULL default '',
-> `val4` varchar(50) NOT NULL default '',
-> PRIMARY KEY (`val1`)
-> ) TYPE=MyISAM AUTO_INCREMENT=3 ;
Query OK, 0 rows affected (0.03 sec)
mysql> INSERT INTO `test_table` VALUES (1, 'some text', 'some text', bad
-> text');
'> INSERT INTO `test_table` VALUES (2, 'some text', 'some text', 'some
-> text');
'> \c
'> '
-> \c
mysql> INSERT INTO `test_table` VALUES (1, 'some text', 'some text', bad
-> text');
'>
Please try a most recent version.
