~ubuntu-branches/ubuntu/maverick/hsqldb/maverick

« back to all changes in this revision

Viewing changes to testrun/hsqldb/TestSelfFKModes.txt

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-09-26 11:47:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060926114749-3jd0utm7w21x1iqt
Tags: 1.8.0.5-2ubuntu1
* Synchronise with Debian unstable; remaining changes:
  - build using java-gcj-compat.
* libhsqldb-java: Add gij as alternative dependency.
* Build a libhsqldb-java-gcj package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
/*c1*/select * from testA
127
127
/*c1*/select * from testB
128
128
/*c1*/select * from testC
 
129
 
 
130
-- INVALID SET DEFAULT
 
131
/*e*/create cached table testE(id integer, foreign key (id) references testA(id) on delete set default);
 
132
/*e*/create cached table testE(id integer primary key, idref integer, foreign key (idref) references teste(id) on delete set default);
 
133
create cached table testE(id integer primary key, idref integer);
 
134
/*e*/alter table testE add foreign key(idref) references testE(id) on delete set default;
 
135
alter table testE alter column idref set default 10;
 
136
alter table testE add foreign key(idref) references testE(id) on delete set default;
 
137
/*e*/alter table testE alter column idref drop default;