Re: SQL99 Hierarchical queries

From: Evgen Potemkin <eugen(dot)potemkin(at)gmail(dot)com>
To: Pavel Stehule <stehule(at)kix(dot)fsv(dot)cvut(dot)cz>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: SQL99 Hierarchical queries
Date: 2005-02-28 08:07:51
Message-ID: 44458e320502280007b1b0b69@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Ok, I'm started porting it to 8.0.1 and will fix this also.
By the way, did you know any test suit for such queries? To make some
regression test.

Regards, Evgen
> I tested you patch, and it's good work. I would all methods in PostgreSQL.
> I found query which kill backand
>
> WITH t AS (
> SELECT 0::int AS i
> UNION ALL SELECT i + 1 FROM t WHERE i < 100)
> SELECT * FROM t;
>
> Regards
> Pavel Stehule
>
>

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Oleg Bartunov 2005-02-28 09:26:06 serial as FK ?
Previous Message Pavel Stehule 2005-02-28 02:29:16 Re: SQL99 Hierarchical queries