~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/join_crash.test

Split out warnings - start using the pandora build system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
  comments mediumtext,
18
18
  PRIMARY KEY  (project_id),
19
19
  UNIQUE KEY project (client_ptr,project_name)
20
 
);
 
20
) ENGINE=MyISAM PACK_KEYS=1;
21
21
 
22
22
INSERT INTO t1 VALUES (1,0,'Rejected Time',1,NULL,NULL,NULL,NULL);
23
23
INSERT INTO t1 VALUES (209,0,'MDGRAD Proposal/Investigation',97,NULL,NULL,NULL,'');
40
40
  PRIMARY KEY  (period_id),
41
41
  KEY period_index (period_type,period_key),
42
42
  KEY date_index (start_date,end_date)
43
 
);
 
43
) ENGINE=MyISAM PACK_KEYS=1;
44
44
 
45
45
INSERT INTO t2 VALUES (1,'user_table',98,'2000-01-01 00:00:00',NULL,NULL);
46
46
INSERT INTO t2 VALUES (2,'user_table',99,'2000-01-01 00:00:00',NULL,NULL);
68
68
  adjustment float(10,2) default NULL,
69
69
  PRIMARY KEY  (budget_id),
70
70
  UNIQUE KEY po (project_ptr,po_number)
71
 
);
 
71
) ENGINE=MyISAM PACK_KEYS=1;
72
72
 
73
73
CREATE TABLE t4 (
74
74
  client_id int NOT NULL auto_increment,
78
78
  comments mediumtext,
79
79
  PRIMARY KEY  (client_id),
80
80
  UNIQUE KEY client_name (client_name)
81
 
);
 
81
) ENGINE=MyISAM PACK_KEYS=1;
82
82
 
83
83
INSERT INTO t4 VALUES (1,0,'CPS',NULL,NULL);
84
84