Re: How to change pg_trigger query so that it works in 9.0 without pg_trigger.tgisconstraint does not exist error

From: Josh Kupershmidt <schmiddy(at)gmail(dot)com>
To: Andrus Moor <eetasoft(at)online(dot)ee>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: How to change pg_trigger query so that it works in 9.0 without pg_trigger.tgisconstraint does not exist error
Date: 2010-10-18 14:12:19
Message-ID: AANLkTinBs6v5KiayEx9PBwNNXd2Nt6PAbfMMJUV7Eh5O@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

2010/10/16 Andrus Moor <eetasoft(at)online(dot)ee>:
> In 9.0 query below returns error
>
> 7/42703:ERROR: column pg_trigger.tgisconstraint does not exist
>
> How to change it so that it works in all servers starting at 8.0 (or at
> least
> from 8.1) to 9.0 ?
> Or if this is not possible how to fix it so that it works in 9 ?
>
> Andrus
>
> SELECT
>  pg_catalog.pg_get_triggerdef(pg_trigger.oid) as trdef
> FROM pg_catalog.pg_trigger
> join pg_catalog.pg_class on pg_trigger.tgrelid = pg_class.oid
> JOIN pg_catalog.pg_namespace ON pg_namespace.oid=pg_class.relnamespace
> WHERE not pg_trigger.tgisconstraint
> and pg_namespace.nspname='firma1'

For 9.0, maybe change the WHERE clause to:

WHERE pg_trigger.tgconstraint = 0 AND
pg_namespace.nspname='firma1'

Josh

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2010-10-18 14:18:28 Re: Question on STABLE functions limitations
Previous Message Mike Christensen 2010-10-18 10:45:32 Re: Need some help setting up pgAgent