~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: kalebral at gmail
  • Date: 2011-02-04 17:01:43 UTC
  • mto: This revision was merged to the branch mainline in revision 2145.
  • Revision ID: kalebral@gmail.com-20110204170143-stl04hnyaa3kq0to
remove remaining error numbers for tests, fail if test has error numbers

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
INSERT INTO t1 (b) VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(100),(101);
104
104
 
105
105
UPDATE t1 SET b = b*10 WHERE b%2=0;
106
 
--ERROR 1366
 
106
--ERROR ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
107
107
INSERT INTO t1 (b) VALUES ('this_will_fail');
108
108
COMMIT;
109
109
 
168
168
--echo connection1
169
169
--echo start insert on t2 then commit after default connection does some work
170
170
START TRANSACTION;
171
 
--ERROR 1366
 
171
--ERROR ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
172
172
INSERT INTO t2 (b) VALUES (100),(1000),(10),(50),('fail_panda');
173
173
 
174
174
connection default;