Re: Passing arguments to views - Mailing list pgsql-hackers

From Greg Stark
Subject Re: Passing arguments to views
Date
Msg-id 87y80trrh9.fsf@stark.xeocode.com
Whole thread Raw
In response to Passing arguments to views  (Chris Campbell <chris@bignerdranch.com>)
Responses Re: Passing arguments to views
List pgsql-hackers
Chris Campbell <chris@bignerdranch.com> writes:

> What do you think? Is this an interesting feature? Is this the right  way to go
> about it, or should I try to get the planner to see through  SQL function
> boundaries

The "right" way to go about this in the original abstract set-theoretic
mindset of SQL is to code the view to retrieve all the rows and then apply
further WHERE clause restrictions to the results of the view. 


So for example this:

>     CREATE VIEW sales_figures($1, $2) AS
>         SELECT ... FROM ... WHERE purchase_date BETWEEN $1 AND $2;

Becomes:

CREATE VIEW sales_figures AS SELECT ... FROM ...

And then you query it with 

SELECT * FROM sales_figures WHERE purchase_date BETWEEN $1 AND $2

sales_figures could have any number of joins and complex where clauses
built-in. It could even be an aggregate grouped by some column (like
purchase_date).

This relies on the SQL optimizer to push the WHERE clause down into the view
to the appropriate depth. Postgres isn't always capable of doing so but it
does a pretty decent job.

-- 
greg



pgsql-hackers by date:

Previous
From: "John"
Date:
Subject: Where to execute the compiled psql
Next
From: Chris Campbell
Date:
Subject: Re: Passing arguments to views