~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/701468.result

  • Committer: Lee Bieber
  • Date: 2011-01-21 21:44:29 UTC
  • mfrom: (2100.1.6 build)
  • Revision ID: kalebral@gmail.com-20110121214429-p7ctkpx00hsb6pv7
Update test for regression.682563 to add now needed COMMIT statements
Need to add new doc files to docs/include.am for distcheck target
update big test, add COMMIT statement per Stewart's recent changes
Merge Stewart - fix bug 701468: TransactionalStorageEngine::doRollback(session, all) "all" isn't true - need to check session autocommit settings
Merge Stewart - 682563: TransactionalStorageEngine::doCommit(session, all) "all" isn't true - need to check session autocommit settings
Merge Andrew - fix bug 705576: Docs need 'How to compile' pages
Merge Andrew - fix bug 705771: Documentation for common client errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create table t1 (a int not null);
 
2
insert into t1 values (1), (NULL), (2);
 
3
ERROR 23000: Column 'a' cannot be null
 
4
begin;
 
5
insert into t1 values (42);
 
6
insert into t1 values (1), (NULL), (2);
 
7
ERROR 23000: Column 'a' cannot be null
 
8
select * from t1;
 
9
a
 
10
42
 
11
rollback;
 
12
select * from t1;
 
13
a
 
14
drop table t1;