Re: Functions returning sets

From: mlw <markw(at)mohawksoft(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Don Baccus <dhogaza(at)pacifier(dot)com>, Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>, Hackers List <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Functions returning sets
Date: 2001-05-20 01:34:27
Message-ID: 3B071F23.E59AF9DF@mohawksoft.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Tom Lane wrote:
>
> Don Baccus <dhogaza(at)pacifier(dot)com> writes:
> > What's so hard about writing "IN" rather than "=" ???
>
> Even more to the point, if we did adopt such a (crazy IMHO)
> interpretation of '=', what makes anyone think that it'd be
> any more efficient than IN?
>
> AFAICT, mlw is hoping that redefining '=' would magically avoid the
> performance problems with IN, but my bet is it'd be just the same.
>
> What we need to do is teach the system how to handle WHERE ... IN ...
> as a form of join. Changing semantics of operators isn't necessary
> nor helpful.

I will defer, of course, to your interpretation of '=', but I still think it
(if implemented efficiently) could be cool. However, I hang my head in shame
that I didn't see this syntax:

select table.* from table, (select function() as field) as result where
table.field = result.field;

It seems to be pretty efficient, and satisfies the main criteria that I needed,
which was a full text search could be used on select with no external
programming language.

Currently my system can't be used without an external programming language, and
this is a huge, if awkward solution. Thanks all.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message mlw 2001-05-20 02:35:54 Re: External search engine, advice
Previous Message Don Baccus 2001-05-20 00:56:06 Re: Functions returning sets