The thing is the postgres tables are already TEXT, so there's not issue. The create_tables mysql however used varchar(255) and the code truncates. This was done to limit storage, but breaks u7 encoding. So now I'm switching mysql to text like postgres. For 2.1.x users running the mysql driver, and upgrade script will be included.
Larry Rosenman wrote: > Paul J Stevens wrote: > >>Martin Furter wrote: >> >>>Hello >>> >>>RFC2822 section 2.1.1 "Line Length Limits" specifies a maximum of 998 >>>characters per line (excluding trailing CRLF). >>> >>>So changing the column to VARCHAR(998) seems more appropriate. >> >>If only that were legal. Maximum width for varchar is 255. > > > That depends on the database. PostgreSQL allows essentially unlimited > varchar() variables (or use text as the type) (actual limit is > around 1GB. > > > -- ________________________________________________________________ Paul Stevens paul at nfg.nl NET FACILITIES GROUP GPG/PGP: 1024D/11F8CD31 The Netherlands________________________________http://www.nfg.nl
