Victoria Reznichenko writes:
> Hi!
> 
> >Description:
> I have an instance of MySQL v.4.0.1 Max with 11 children spawned running on
> a Linux (RedHat 7.0 guiness, 2.2.16-22) personal laptop (Dell Inspiron 5000e)
> and when I do a simple update on a table that is Full Text enabled, MySQL
> and all its children crash.
> I have absolutly no clue why it does that. I never had any problem before.
> 
> >How-To-Repeat:
> Create the following table:
> CREATE TABLE pmn_archive (
>   oid           INT UNSIGNED DEFAULT '0' NOT NULL AUTO_INCREMENT,
>   mesg_id       VARCHAR(255) NOT NULL,
>   subject       VARCHAR(255),
>   sender        VARCHAR(255),
>   email         VARCHAR(255),
>   mdate         DATETIME,
>   reference     VARCHAR(255) NOT NULL,
>   idx           INT DEFAULT '1' NOT NULL,
>   header        TEXT,
>   url           VARCHAR(255),
>   title         VARCHAR(255),
>   description   TEXT,
>   data          TEXT,
>   size          INT,
>   since         DATETIME,
>   last          DATETIME,
>   FULLTEXT(url,title,description,data,sender,email),
>   status for thread purpose
>   UNIQUE(mesg_id),
>   PRIMARY KEY(oid)
> );
> 
> Add the following data:
> INSERT IGNORE INTO pmn_archive
> (mdate,reference,subject,idx,since,header,last,mesg_id,email,sender)
> VALUES(FROM_UNIXTIME(819511140),'','Simple message 
>test','1',FROM_UNIXTIME(1025153882),'Return-Path: <[EMAIL PROTECTED]>
> Date: Wed, 20 Dec 95 19:59 CST
> From: [EMAIL PROTECTED]
> To: [EMAIL PROTECTED]
> Cc:
> Subject: Simple message test
> 
>',FROM_UNIXTIME(1025153882),'tgGtI1MTTcZTKycABjwMBg','[EMAIL PROTECTED]','[EMAIL PROTECTED]
> ');
> 
> The, do the following update:
> 
> UPDATE
>   pmn_archive 
> SET 
>   data='This is a dummy test for a very simple message This drive scripts are 
>located in dev List Email Message Shoudl their be any problems pls do hesitate to 
>contact me Thanks Moi je pense ca Oui mais je ne suis pas d accord Ah Bah dommage M 
>enfin pourquoi tant de haine Mon titre est M E D I A S N E W S M E D I A S C O M Mon 
>url est http cgi deguest jp u medias mailing list jp et LA JE GUEULE Best Regards 
>Jacques Deguest jack deguest jp  ',
>   description='This dummy test for very simple message. This drive scripts are 
>located ~/dev/List/Email/Message Shoudl their any problems, pls, hesitate contact ;-) 
>Thanks, Moi, pense Oui,',
>   url='/1995-12-21-.html',
>   last=FROM_UNIXTIME(819511140),
>   title='Simple message test
> ',
>   size='582' 
> WHERE oid='1';

Hi!

Thank you for your bug report.

I tested it with 4.0.2 and it works just fine.

4.0.2 will be released next week latest.


-- 
Regards,
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Mr. Sinisa Milivojevic <[EMAIL PROTECTED]>
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, Fulltime Developer
/_/  /_/\_, /___/\___\_\___/   Larnaca, Cyprus
       <___/   www.mysql.com


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to