Re: Given 02-01-2006 to 02-28-2006, output all days.

From: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
To: Henry Ortega <juandelacruz(at)gmail(dot)com>
Cc: Owen Jacobson <ojacobson(at)osl(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Given 02-01-2006 to 02-28-2006, output all days.
Date: 2006-02-19 18:57:30
Message-ID: 20060219105545.B47140@megazone.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Sun, 19 Feb 2006, Henry Ortega wrote:

> I was able to find a suitable 7.3.2 plpgsql.so and now plpgsql works.
> (supposedly)
>
> I am trying out some really basic function creation such as this:
>
> create function dng2(start_date DATE) returns setof date as $$
> declare
> aa date:=start_date;

I don't think the beginning is a valid function definition in 7.3.x as I'm
pretty sure it didn't have the grammar support for named parameters.
Also, I think dollar quoting came in 8.0, so that's not going to work
either. You may be looking at a different version of the docs than the
version you're using.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Michael Fuhr 2006-02-19 19:07:13 Re: Given 02-01-2006 to 02-28-2006, output all days.
Previous Message Henry Ortega 2006-02-19 18:47:21 Re: Given 02-01-2006 to 02-28-2006, output all days.