Re: A question about rules

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: stan <stanb(at)panix(dot)com>
Cc: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: A question about rules
Date: 2020-01-19 16:52:36
Message-ID: b59efb6e-36d0-c62d-8c4b-49fae3616b35@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 1/19/20 2:32 AM, stan wrote:
Please post to list also.
Ccing list.

> On Sat, Jan 18, 2020 at 08:56:06AM -0800, Adrian Klaver wrote:
>> On 1/18/20 8:53 AM, stan wrote:
>>> So, I just discovered the rules system. As I understand it, it can be used
>>> to rewrite queries before they are passed to the query processor.
>>>
>>> I was wondering if I could use this to resolve a long standing frustration
>>> of mine. I often need to declare a column as NON NULL, and create a
>>> trigger/function to auto populate it with something more complex than a
>>> simple sequence. This need arises fairly often for me, and I would like to
>>> come up with a good way to implement this.
>>
>> Stay away from rules, they will only drive you to distraction. Stick with
>> triggers they are a lot easier to understand and implement.
>>
>
> I use triggers quite a bit. My issue is that if I have a column defined as
> NOT NULL, and assign a trigger that fires a function to auto populate this
> column if the user (input form) does not. The NOT NULL constraint is
> checked BEFORE the trigger can fire, which means that I cannot properly
> provide data integrity.
>

I don't know that this changes with rules. In other words I believe
constraints are checked first with either rules/triggers. Someone else
will need to confirm this.

A work around is to supply a dummy DEFAULT for the the NOT NULL column
e.g. for a varchar column the string 'NOT NULL'. Test for this in the
trigger and take the appropriate action. Or accept the reality which is,
you are allowing NULL input to the column and take away the NOT NULL
constraint and look for NULL or empty string input and take the
appropriate action.

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message George Neuner 2020-01-19 19:45:23 testing post through gmane.io
Previous Message Adrian Klaver 2020-01-18 16:56:06 Re: A question about rules