writing a MIN(RECORD) aggregate - Mailing list pgsql-hackers

From Sam Mason
Subject writing a MIN(RECORD) aggregate
Date
Msg-id 20080320192332.GF6870@frubble.xen.chris-lamb.co.uk
Whole thread Raw
Responses Re: writing a MIN(RECORD) aggregate
List pgsql-hackers
Hi,

I'm trying to write a version of the MIN aggregate for values of RECORD
type.  I'm somewhat stuck on getting type information about the argument
out, I can determine how many attributes it's got but I can't seem to do
any better than that.  Does anyone have any good pointers into the code
for places to help me understand what's happening?

The reason for doing this is mainly because I think it'd be nicer to be
doing things like:
 SELECT i, (MIN((j,k))).k FROM tbl GROUP BY i;

instead of:
 SELECT DISTINCT ON (i) i, k FROM tbl ORDER BY i,j,k;

Which as far as I can tell should produce identical results, except the
first has cleaner semantics.  It also allows you to combine MIN and MAX
in the same query, giving the value of k for the smallest and largest j
in this example--requiring two queries if it was done using the DISTINCT
ON method.

 Sam


pgsql-hackers by date:

Previous
From: Martijn van Oosterhout
Date:
Subject: Re: Unique Constraints using Non-Unique Indexes
Next
From: Simon Riggs
Date:
Subject: Sort Refinement