crash

Discussion of open issues, suggestions and bugs regarding database management and administration tools for MySQL
Post Reply
ecocozza

crash

Post by ecocozza » Fri 01 Jul 2005 00:53

You can crash the program with the following query:

SELECT
users.username,
bug_history.date_modified,
bug_history.field_name,
bug_history.old_value,
bug_history.new_value,
bug_history.bug_id,
bug.summary

FROM
mantis.mantis_user_table users,
mantis.mantis_bug_history_table bug_history,

(
select bug_history2.id, bug_history2.old_val
from mantis.mantis_bug_history_table bug_history2
where bug_history2.type='2' and
bug_history2.date_modified = '2005-06-30'
)
bug_history3,

mantis.mantis_bug_table bug

WHERE
bug_history.id = bug_history3.id AND
users.id = bug_history.user_id AND
bug_history.bug_id = bug.id


ORDER BY
bug_history.date_modified

Duke
Devart Team
Posts: 476
Joined: Fri 29 Oct 2004 09:25

Post by Duke » Fri 01 Jul 2005 06:44

Could you, please, send table scripts to out support email so we could reproduce the problem?

Post Reply