~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/update.result

  • Committer: Diego Medina
  • Date: 2009-10-05 03:48:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: diego.medina@sun.com-20091005034842-zx8kjwq2tjprva8q
* On certain UPDATE and DELETE statements, drizzled failed an assert() in 
   Diagnostic_area.
** Fixed by resetting m_status after "delete select"
* Fixed LP bug#439719
* Added test case

Show diffs side-by-side

added added

removed removed

Lines of Context:
398
398
count(*)
399
399
16384
400
400
drop table t1,t2;
 
401
CREATE TABLE t1(col1 enum('a','b') NOT NULL, col2 enum('a','b') DEFAULT NULL, KEY col2 (col2));
 
402
UPDATE t1 SET col1 = "crash" WHERE col2 = now() ;
401
403
End of 5.0 tests