At 15:39 -0400 9/3/05, Jason Pyeron wrote:
I have found out that some files on the system, have trailing spaces...
To make matters worse I have found 'file ' and 'file ' both exist,
breaking constraint "name".
So am I better off going to TINYTEXT or VARBINARY(255) for the name field?
VARBINARY also is subject to trailing space stripping.
Note: If you use MySQL 5.0.3 or up, VARCHAR/VARBINARY do *not* strip
trailing spaces. Earlier than that, you probably should use TINYTEXT.
That said another way, will TINTTEXT break the index (and index speed)?
Will VARBINARY break the way the Connector/J handles the strings
(they are utf8)?
CREATE TABLE paths (
id int(11) NOT NULL auto_increment,
typeref tinyint(4) NOT NULL default '1',
name varchar(255) NOT NULL default '',
ppathref int(11) default NULL,
PRIMARY KEY (id),
UNIQUE KEY name (name,ppathref),
KEY ppathref (ppathref),
KEY typeref (typeref),
CONSTRAINT paths_ibfk_1 FOREIGN KEY (ppathref) REFERENCES paths (id),
CONSTRAINT paths_ibfk_2 FOREIGN KEY (typeref) REFERENCES pathtypes (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
--
Paul DuBois, MySQL Documentation Team
Madison, Wisconsin, USA
MySQL AB, www.mysql.com
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]