~ubuntu-branches/ubuntu/raring/apgdiff/raring

« back to all changes in this revision

Viewing changes to src/test/resources/cz/startnet/utils/pgdiff/modify_inherits_diff.sql

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2008-09-09 15:42:54 UTC
  • Revision ID: james.westby@ubuntu.com-20080909154254-458sv7ew1rczdal1
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
CREATE TABLE parenttable2 (
 
3
        id bigserial NOT NULL
 
4
);
 
5
 
 
6
ALTER TABLE parenttable
 
7
        DROP COLUMN id,
 
8
        ADD COLUMN field3 information_schema.cardinal_number;
 
9
 
 
10
Modified INHERITS on TABLE testtable: original table uses INHERITS (parenttable) but new table uses INHERITS (parenttable2)