Package: mysql-server
Version: 4.0.27-7

The 'ssl' word seems to be reserved (caused a false positive 1064 error), but I can't find it as reserved word in reference guide (http://dev.mysql.com/doc/mysql/en/reserved-words.html).

mysql> alter table domain add column ssl int(1) unsigned default NULL;
ERROR 1064: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ssl int(1) unsigned default NULL' at line 1


mysql> alter table domain add column SSL int(1) unsigned default NULL;
ERROR 1064: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SSL int(1) unsigned default NULL' at line 1


mysql> alter table domain add column lss int(1) unsigned default NULL;
Query OK, 0 rows affected (0.02 sec)
Records: 0  Duplicates: 0  Warnings: 0


-- Gabor HALASZ <[EMAIL PROTECTED]>


-- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Reply via email to