Re: To prefer sorts or filters in postgres, that is the question.... - Mailing list pgsql-general

From Laurenz Albe
Subject Re: To prefer sorts or filters in postgres, that is the question....
Date
Msg-id 1523946266.2329.5.camel@cybertec.at
Whole thread Raw
In response to To prefer sorts or filters in postgres, that is the question....  (Bob Jones <r.a.n.d.o.m.d.e.v.4+postgres@gmail.com>)
Responses Re: To prefer sorts or filters in postgres, that is the question....
List pgsql-general
Bob Jones wrote:
> I've been playing around with hierarchical queries a bit and one thing
> I wanted to do is build a query that gives the ultimate parent for a
> given child.
> 
> The two queries below seem to be a good a shortlist as any.
> 
> I'm no query-plan guru, but these seem to be  largely identical aside
> from one uses "filter IS NULL" and the other uses "top-N heapsort".
> 
> Would there be a reason to prefer one over the other (or perhaps
> there's an altogether more efficient way of doing this query ?!?).
> My gut-instinct says the sort version ?

The ultimate criterion which one is better is the execution time,
but you probably need more data to tell with certainty.

At a short glance, I'd say that they are pretty much the same.
The filter and the top-1-sort will both require a single scan through
the result set and one operation per row found.
And the recursive queries are pretty similar, right?

Yours,
Laurenz Albe
-- 
Cybertec | https://www.cybertec-postgresql.com


pgsql-general by date:

Previous
From: vaibhav zaveri
Date:
Subject: Which jdk version is supported by PostgreSQL
Next
From: Gao Jack
Date:
Subject: RE: Which jdk version is supported by PostgreSQL