~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/savepoint.test

  • Committer: Brian Aker
  • Date: 2011-02-04 20:01:06 UTC
  • mfrom: (2141.1.2 trunk)
  • Revision ID: brian@tangent.org-20110204200106-rfzbjmx22m60630k
Merge in Lee's fixes for the test system to no longer use numbers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
sleep 1;
51
51
 
52
52
connection con1;
53
 
--ERROR 1213
 
53
--ERROR ER_LOCK_DEADLOCK
54
54
DELETE FROM t2 WHERE a > 0;
55
55
 
56
56
--echo
71
71
SELECT * FROM DATA_DICTIONARY.USER_DEFINED_SAVEPOINTS;
72
72
--echo
73
73
UPDATE t3 SET b = 'TRX1c' WHERE a > 7;
74
 
--ERROR 1305
 
74
--ERROR ER_SP_DOES_NOT_EXIST
75
75
ROLLBACK TO SAVEPOINT A;
76
76
COMMIT;
77
77