Views and query planner - Mailing list pgsql-sql

From Mario Splivalo
Subject Views and query planner
Date
Msg-id 1151670948.27032.5.camel@localhost.localdomain
Whole thread Raw
Responses Re: Views and query planner
List pgsql-sql
Let's say I have a view like this:

CREATE VIEW v_small AS
SELECT c1, c2
FROM t1 JOIN t2 ON t1.c1 = t2.c2

and then I have another view

CREATE VIEW v_big AS
SELECT c1 FROM v_small WHERE c2 > 5

Now, when I do this:

SELECT * FROM v_big WHERE c1 < 1500

Is postgres going to make one query plan, or each view has it own query
plan?
Mike
-- 
Mario Splivalo
Mob-Art
mario.splivalo@mobart.hr

"I can do it quick, I can do it cheap, I can do it well. Pick any two."




pgsql-sql by date:

Previous
From: Jason Farmer
Date:
Subject: Re: Using In Clause For a Large Text Matching Query
Next
From: Michael Glaesemann
Date:
Subject: Re: Views and query planner