Re: SQL99 Hierarchical queries

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

hello,

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 Evgen Potemkin 2005-02-28 08:07:51 Re: SQL99 Hierarchical queries
Previous Message Neil Conway 2005-02-28 00:22:26 Re: [HACKERS] Development Plans