From: | Simon Riggs <simon(at)2ndquadrant(dot)com> |
---|---|
To: | Gregory Stark <stark(at)enterprisedb(dot)com> |
Cc: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: BUG #4204: COPY to table with FK has memory leak |
Date: | 2008-05-29 05:41:44 |
Message-ID: | 1212039704.4489.724.camel@ebony.site |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs pgsql-hackers |
On Wed, 2008-05-28 at 18:17 -0400, Gregory Stark wrote:
> "Simon Riggs" <simon(at)2ndquadrant(dot)com> writes:
>
> > AFAICS we must aggregate the trigger checks. We would need a special
> > property of triggers that allowed them to be aggregated when two similar
> > checks arrived. We can then use hash aggregation to accumulate them. We
> > might conceivably need to spill to disk also, since the aggregation may
> > not always be effective. But in most cases the tables against which FK
> > checks are made are significantly smaller than the tables being loaded.
> > Once we have hash aggregated them, that is then the first part of a hash
> > join to the target table.
>
> Well we can't aggregate them as they're created because later modifications
> could delete or update the original records. The SQL spec requires that FK
> checks be effective at the end of the command.
Well, thats what we need to do. We just need to find a way...
Currently, we store trigger entries by htid. I guess we need to
aggregate them on the actual values looked up.
The SQL spec also says that the contents of the FK check table should be
taken as at the start of the command, so we should be safe to aggregate
the values prior to the check.
As already suggested in work on Read Only Tables, we could optimise them
away to being constraint checks.
--
Simon Riggs www.2ndQuadrant.com
PostgreSQL Training, Services and Support
From | Date | Subject | |
---|---|---|---|
Next Message | Hannu Krosing | 2008-05-29 06:44:34 | Re: BUG #4204: COPY to table with FK has memory leak |
Previous Message | Thomas H. | 2008-05-29 01:05:23 | Re: BUG #4186: set lc_messages does not work |
From | Date | Subject | |
---|---|---|---|
Next Message | Simon Riggs | 2008-05-29 05:45:37 | Re: Avoiding second heap scan in VACUUM |
Previous Message | Pavan Deolasee | 2008-05-29 04:27:51 | Re: Avoiding second heap scan in VACUUM |