From: | Joe Conway <mail(at)joeconway(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Patches <pgsql-patches(at)postgresql(dot)org> |
Subject: | Re: stand-alone composite types patch (was [HACKERS] Proposal: |
Date: | 2002-08-08 22:48:41 |
Message-ID: | 3D52F549.30109@joeconway.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-patches |
Tom Lane wrote:
> If you did it that way then you'd not need that ugly kluge in
> RemoveType. What you'd need instead is some smarts (a kluge!?) in
> setting up the dependency. Currently that dependency is made in
> TypeCreate which doesn't know what sort of relation it's creating
> a type for. Probably the best answer is to pull that particular
> dependency out of TypeCreate, and make it (in the proper direction)
> in AddNewRelationType.
Fixed.
> Also, I'm not following the point of the separation between
> DefineCompositeType and DefineCompositeTypeRelation; nor do I see a need
> for a CommandCounterIncrement call in there.
Fixed.
> You have missed a number of places where this new relkind ought to
> be special-cased the same way RELKIND_VIEW is --- for example
> CheckAttributeNames and AddNewAttributeTuples, since a composite type
> presumably shouldn't have system columns associated. I'd counsel
> looking at all references to RELKIND_VIEW to see which places also need
> to check for RELKIND_COMPOSITE_TYPE.
Yup, I had missed lots of things, not the least of which was pg_dump.
New patch attached includes pg_dump, psql (\dT), docs, and regression
support.
There is also a small adjustment to the expected output file for
select-having. I was getting a regression failure based on ordering of
the results, so I added ORDER BY clauses.
Passes all regression tests. If no more objections, please apply.
Thanks,
Joe
Attachment | Content-Type | Size |
---|---|---|
comp-type.2002.08.08.2.patch | text/plain | 44.0 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2002-08-08 22:57:04 | Re: stand-alone composite types patch (was [HACKERS] Proposal: stand-alone composite types) |
Previous Message | Roderick A. Anderson | 2002-08-08 22:32:58 | Re: [HACKERS] postgresql performance tuning document ? |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2002-08-08 22:57:04 | Re: stand-alone composite types patch (was [HACKERS] Proposal: stand-alone composite types) |
Previous Message | Bruce Momjian | 2002-08-08 22:47:21 | Re: Patch for NetWare support |