NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
corrupted database? (Score:2)
mysql> show create table mail\G*************************** 1. row ***************************
Table: mail
Create Table: CREATE TABLE `mail` (
`mail_id` int(11) unsigned NOT NULL auto_increment,
`user` varchar(64) default NULL,
`mail_type_id` int(10) unsigned NOT NULL,
`domain_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`mail_id`),
KEY `mail_type_id` (`mail_type_id`),
KEY `domain_id` (`domain_id`,`user`)
) ENGINE=InnoDB AUTO_INCREMENT=25
Ilya Martynov (http://martynov.org/ [martynov.org])
Re: (Score:1)
I can reproduce by the following:
mysql> CREATE TABLE `foo` (
-> `mail_id` int(11) unsigned NOT NULL auto_increment,
`user` varchar(64) default NULL,
-> `user` varchar(64) default NULL,
-> `mail_type_id` int(10) unsigned NOT NULL,
-> `domain_id`
Oracle like feature? (Score:2)
Ilya Martynov (http://martynov.org/ [martynov.org])
Re:Oracle like feature? (Score:1)
Reply to This
Parent
Re: (Score:2)
Ilya Martynov (http://martynov.org/ [martynov.org])