Re: going gaga on creating an aggregate... [solved of course...]

From: Christian Fritze <The(dot)Finn(at)sprawl(dot)de>
To: Christian Fritze <The(dot)Finn(at)sprawl(dot)de>
Cc: "pgsql-sql(at)postgresql(dot)org" <pgsql-sql(at)postgresql(dot)org>
Subject: Re: going gaga on creating an aggregate... [solved of course...]
Date: 2000-04-15 23:01:27
Message-ID: 200004152301.BAA02788@chatsubo.sprawl.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


Oh my, I've been obfuscating. Again...
While having a couple of beers as mental lubricants in the
LAP (Local Area Pub), it came to my mind that just doing a

create aggregate test_agg_1 (
basetype = text,
stype1 = text,
sfunc1 = textcat,
initcond1 = '');

and then selecting like

select test_agg_1(textvar || ' ') from testtable;

perfectly suites my needs. Sorry for the fuzz!

Still I'm somewhat curious as to why my first
approach didn't work...

Greetings
Christian

--
"The sky above the port was the color of television,
tuned to a dead channel."
-- W.G. --

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2000-04-16 05:04:10 Re: Re: going gaga on creating an aggregate... [solved of course...]
Previous Message Christian Fritze 2000-04-15 19:28:54 going gaga on creating an aggregate...