~ubuntu-branches/ubuntu/raring/postgresql-8.4/raring

« back to all changes in this revision

Viewing changes to src/backend/catalog/information_schema.sql

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2011-12-02 14:46:33 UTC
  • mfrom: (13.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20111202144633-azdcoyqh7sduwr15
Tags: 8.4.10-1
* New upstream bug fix release:
  - Fix bugs in information_schema.referential_constraints view.
    This view was being insufficiently careful about matching the
    foreign-key constraint to the depended-on primary or unique key
    constraint. That could result in failure to show a foreign key
    constraint at all, or showing it multiple times, or claiming that
    it depends on a different constraint than the one it really does.
    Since the view definition is installed by initdb, merely upgrading
    will not fix the problem. If you need to fix this in an existing
    installation, you can (as a superuser) drop the information_schema
    schema then re-create it by sourcing
    "SHAREDIR/information_schema.sql". (Run pg_config --sharedir if
    you're uncertain where "SHAREDIR" is.) This must be repeated in
    each database to be fixed.
  - Fix incorrect replay of WAL records for GIN index updates.
    This could result in transiently failing to find index entries
    after a crash, or on a hot-standby server. The problem would be
    repaired by the next "VACUUM" of the index, however.
  - Fix TOAST-related data corruption during CREATE TABLE dest AS
    SELECT - FROM src or INSERT INTO dest SELECT * FROM src.
    If a table has been modified by "ALTER TABLE ADD COLUMN", attempts
    to copy its data verbatim to another table could produce corrupt
    results in certain corner cases. The problem can only manifest in
    this precise form in 8.4 and later, but we patched earlier versions
    as well in case there are other code paths that could trigger the
    same bug.
  - Fix race condition during toast table access from stale syscache
    entries.
  - Track dependencies of functions on items used in parameter default
    expressions. Previously, a referenced object could be dropped without
    having dropped or modified the function, leading to misbehavior when the
    function was used. Note that merely installing this update will not fix
    the missing dependency entries; to do that, you'd need to "CREATE OR
    REPLACE" each such function afterwards. If you have functions whose
    defaults depend on non-built-in objects, doing so is recommended.
  - Allow inlining of set-returning SQL functions with multiple OUT
    parameters.
  - Make DatumGetInetP() unpack inet datums that have a 1-byte header,
    and add a new macro, DatumGetInetPP(), that does not.
  - Improve locale support in money type's input and output.
    Aside from not supporting all standard lc_monetary formatting
    options, the input and output functions were inconsistent, meaning
    there were locales in which dumped money values could not be
    re-read.
  - Don't let transform_null_equals affect CASE foo WHEN NULL ...
    constructs. transform_null_equals is only supposed to affect foo = NULL
    expressions written directly by the user, not equality checks
    generated internally by this form of CASE.
  - Change foreign-key trigger creation order to better support
    self-referential foreign keys. For a cascading foreign key that
    references its own table, a row update will fire both the ON UPDATE
    trigger and the CHECK trigger as one event. The ON UPDATE trigger must
    execute first, else the CHECK will check a non-final state of the row
    and possibly throw an inappropriate error. However, the firing order of
    these triggers is determined by their names, which generally sort in
    creation order since the triggers have auto-generated names following
    the convention "RI_ConstraintTrigger_NNNN". A proper fix would require
    modifying that convention, which we will do in 9.2, but it seems risky
    to change it in existing releases. So this patch just changes the
    creation order of the triggers. Users encountering this type of error
    should drop and re-create the foreign key constraint to get its triggers
    into the right order.
  - Avoid floating-point underflow while tracking buffer allocation
    rate.
  - Preserve blank lines within commands in psql's command history.
    The former behavior could cause problems if an empty line was
    removed from within a string literal, for example.
  - Fix pg_dump to dump user-defined casts between auto-generated
    types, such as table rowtypes.
  - Use the preferred version of xsubpp to build PL/Perl, not
    necessarily the operating system's main copy.
  - Fix incorrect coding in "contrib/dict_int" and "contrib/dict_xsyn".
  - Honor query cancel interrupts promptly in pgstatindex().
  - Ensure VPATH builds properly install all server header files.
  - Shorten file names reported in verbose error messages.
    Regular builds have always reported just the name of the C file
    containing the error message call, but VPATH builds formerly
    reported an absolute path name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1099
1099
 
1100
1100
    FROM (pg_namespace ncon
1101
1101
          INNER JOIN pg_constraint con ON ncon.oid = con.connamespace
1102
 
          INNER JOIN pg_class c ON con.conrelid = c.oid)
1103
 
         LEFT JOIN
1104
 
         (pg_constraint pkc
1105
 
          INNER JOIN pg_namespace npkc ON pkc.connamespace = npkc.oid)
1106
 
         ON con.confrelid = pkc.conrelid
1107
 
            AND _pg_keysequal(con.confkey, pkc.conkey)
 
1102
          INNER JOIN pg_class c ON con.conrelid = c.oid AND con.contype = 'f')
 
1103
         LEFT JOIN pg_depend d1  -- find constraint's dependency on an index
 
1104
          ON d1.objid = con.oid AND d1.classid = 'pg_constraint'::regclass
 
1105
             AND d1.refclassid = 'pg_class'::regclass AND d1.refobjsubid = 0
 
1106
         LEFT JOIN pg_depend d2  -- find pkey/unique constraint for that index
 
1107
          ON d2.refclassid = 'pg_constraint'::regclass
 
1108
             AND d2.classid = 'pg_class'::regclass
 
1109
             AND d2.objid = d1.refobjid AND d2.objsubid = 0
 
1110
             AND d2.deptype = 'i'
 
1111
         LEFT JOIN pg_constraint pkc ON pkc.oid = d2.refobjid
 
1112
            AND pkc.contype IN ('p', 'u')
 
1113
            AND pkc.conrelid = con.confrelid
 
1114
         LEFT JOIN pg_namespace npkc ON pkc.connamespace = npkc.oid
1108
1115
 
1109
 
    WHERE c.relkind = 'r'
1110
 
          AND con.contype = 'f'
1111
 
          AND (pkc.contype IN ('p', 'u') OR pkc.contype IS NULL)
1112
 
          AND (pg_has_role(c.relowner, 'USAGE')
1113
 
               -- SELECT privilege omitted, per SQL standard
1114
 
               OR has_table_privilege(c.oid, 'INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER')
1115
 
               OR has_any_column_privilege(c.oid, 'INSERT, UPDATE, REFERENCES') );
 
1116
    WHERE pg_has_role(c.relowner, 'USAGE')
 
1117
          -- SELECT privilege omitted, per SQL standard
 
1118
          OR has_table_privilege(c.oid, 'INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER')
 
1119
          OR has_any_column_privilege(c.oid, 'INSERT, UPDATE, REFERENCES') ;
1116
1120
 
1117
1121
GRANT SELECT ON referential_constraints TO PUBLIC;
1118
1122