join_crash.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # This test gave a core dump
  3. #
  4. --disable_warnings
  5. DROP TABLE IF EXISTS t1,t2,t3,t4;
  6. --enable_warnings
  7. CREATE TABLE t1 (
  8.   project_id int(11) NOT NULL auto_increment,
  9.   project_row_lock int(11) NOT NULL default '0',
  10.   project_name varchar(80) NOT NULL default '',
  11.   client_ptr int(11) NOT NULL default '0',
  12.   project_contact_ptr int(11) default NULL,
  13.   client_contact_ptr int(11) default NULL,
  14.   billing_contact_ptr int(11) default NULL,
  15.   comments mediumtext,
  16.   PRIMARY KEY  (project_id),
  17.   UNIQUE KEY project (client_ptr,project_name)
  18. ) ENGINE=MyISAM PACK_KEYS=1;
  19. INSERT INTO t1 VALUES (1,0,'Rejected Time',1,NULL,NULL,NULL,NULL);
  20. INSERT INTO t1 VALUES (209,0,'MDGRAD Proposal/Investigation',97,NULL,NULL,NULL,'');
  21. INSERT INTO t1 VALUES (208,0,'Font 9 Design',84,NULL,NULL,NULL,'');
  22. INSERT INTO t1 VALUES (207,0,'Web Based Order Processing',95,NULL,NULL,NULL,'');
  23. INSERT INTO t1 VALUES (205,0,'Mac Screen Saver',95,NULL,NULL,NULL,'');
  24. INSERT INTO t1 VALUES (206,0,'Web Site',96,NULL,NULL,NULL,'');
  25. INSERT INTO t1 VALUES (204,0,'Magnafire Glue',94,NULL,NULL,NULL,'');
  26. INSERT INTO t1 VALUES (203,0,'Print Bid',93,NULL,NULL,NULL,'');
  27. INSERT INTO t1 VALUES (202,0,'EPOC Port',92,NULL,NULL,NULL,'');
  28. INSERT INTO t1 VALUES (201,0,'TravelMate',88,NULL,NULL,NULL,'');
  29. CREATE TABLE t2 (
  30.   period_id int(11) NOT NULL auto_increment,
  31.   period_type enum('user_table','client_table','role_table','member_table','project_table') default NULL,
  32.   period_key int(11) default NULL,
  33.   start_date datetime default NULL,
  34.   end_date datetime default NULL,
  35.   work_load int(11) default NULL,
  36.   PRIMARY KEY  (period_id),
  37.   KEY period_index (period_type,period_key),
  38.   KEY date_index (start_date,end_date)
  39. ) ENGINE=MyISAM PACK_KEYS=1;
  40. INSERT INTO t2 VALUES (1,'user_table',98,'2000-01-01 00:00:00',NULL,NULL);
  41. INSERT INTO t2 VALUES (2,'user_table',99,'2000-01-01 00:00:00',NULL,NULL);
  42. INSERT INTO t2 VALUES (3,'user_table',100,'2000-01-01 00:00:00',NULL,NULL);
  43. INSERT INTO t2 VALUES (49,'project_table',148,'2000-01-01 00:00:00',NULL,NULL);
  44. INSERT INTO t2 VALUES (50,'client_table',68,'2000-01-01 00:00:00',NULL,NULL);
  45. INSERT INTO t2 VALUES (51,'project_table',149,'2000-01-01 00:00:00',NULL,NULL);
  46. INSERT INTO t2 VALUES (52,'project_table',150,'2000-01-01 00:00:00',NULL,NULL);
  47. INSERT INTO t2 VALUES (53,'client_table',69,'2000-01-01 00:00:00',NULL,NULL);
  48. INSERT INTO t2 VALUES (54,'project_table',151,'2000-01-01 00:00:00',NULL,NULL);
  49. INSERT INTO t2 VALUES (55,'client_table',70,'2000-01-01 00:00:00',NULL,NULL);
  50. INSERT INTO t2 VALUES (155,'role_table',1,'2000-01-01 00:00:00',NULL,NULL);
  51. INSERT INTO t2 VALUES (156,'role_table',2,'2000-01-01 00:00:00',NULL,NULL);
  52. INSERT INTO t2 VALUES (160,'member_table',1,'2000-01-01 00:00:00',NULL,1);
  53. INSERT INTO t2 VALUES (161,'member_table',2,'2000-01-01 00:00:00',NULL,1);
  54. INSERT INTO t2 VALUES (162,'member_table',3,'2000-01-01 00:00:00',NULL,1);
  55. CREATE TABLE t3 (
  56.   budget_id int(11) NOT NULL auto_increment,
  57.   project_ptr int(11) NOT NULL default '0',
  58.   po_number varchar(20) NOT NULL default '',
  59.   status enum('open','closed') default NULL,
  60.   date_received datetime default NULL,
  61.   amount_received float(10,2) default NULL,
  62.   adjustment float(10,2) default NULL,
  63.   PRIMARY KEY  (budget_id),
  64.   UNIQUE KEY po (project_ptr,po_number)
  65. ) ENGINE=MyISAM PACK_KEYS=1;
  66. CREATE TABLE t4 (
  67.   client_id int(11) NOT NULL auto_increment,
  68.   client_row_lock int(11) NOT NULL default '0',
  69.   client_name varchar(80) NOT NULL default '',
  70.   contact_ptr int(11) default NULL,
  71.   comments mediumtext,
  72.   PRIMARY KEY  (client_id),
  73.   UNIQUE KEY client_name (client_name)
  74. ) ENGINE=MyISAM PACK_KEYS=1;
  75. INSERT INTO t4 VALUES (1,0,'CPS',NULL,NULL);
  76. #
  77. # The query that fails...
  78. #
  79. select distinct
  80.     t1.project_id as project_id,
  81.     t1.project_name as project_name,
  82.     t1.client_ptr as client_ptr,
  83.     t1.comments as comments,
  84.     sum( t3.amount_received ) + sum( t3.adjustment ) as total_budget
  85. from
  86.     t1 ,
  87.     t2 as client_period ,
  88.     t2 as project_period
  89.     left join
  90.         t3
  91.     on
  92.         t3.project_ptr = t1.project_id
  93.         and t3.date_received <= '2001-03-22 14:15:09'
  94.     left join
  95.         t4
  96.     on
  97.         t4.client_id = t1.client_ptr
  98.    where
  99.         1
  100.         and ( client_period.period_type = 'client_table'
  101.             and client_period.period_key = t4.client_id
  102.             and ( client_period.start_date <= '2001-03-22 14:15:09' or isnull( client_period.start_date ))
  103.             and ( client_period.end_date > '2001-03-21 14:15:09' or isnull( client_period.end_date ))
  104.             )
  105.         and ( project_period.period_type = 'project_table'
  106.         and project_period.period_key = t1.project_id
  107.         and ( project_period.start_date <= '2001-03-22 14:15:09' or isnull( project_period.start_date ))
  108.         and ( project_period.end_date > '2001-03-21 14:15:09' or isnull( project_period.end_date )) )
  109.     group by
  110.         client_id,
  111.         project_id ,
  112.         client_period.period_id ,
  113.         project_period.period_id
  114.     order by
  115.         client_name asc,
  116.         project_name asc;
  117. DROP TABLE t1,t2,t3,t4;
  118. # End of 4.1 tests