FEATURE: Reuse temporary tables - Mailing list pgsql-bugs

From
Subject FEATURE: Reuse temporary tables
Date
Msg-id 000601c8ba67$bc7dd4a0$1200a8c0@kharkov.localhost
Whole thread Raw
List pgsql-bugs
ACTUAL:
select * from (select atc.id, ats.test_suit_type_id from akh_testing_conf a=
tc left join akh_test_suit ats on ats.id =3D atc.test_suit_id) tc1
left join (select atc.id, ats.test_suit_type_id from akh_testing_conf atc l=
eft join akh_test_suit ats on ats.id =3D atc.test_suit_id) tc2 on tc2.test_=
suit_type_id =3D tc1.test_suit_type_id
where tc1.id =3D 3879

FEATURED:
select * from (select atc.id, ats.test_suit_type_id from akh_testing_conf a=
tc left join akh_test_suit ats on ats.id =3D atc.test_suit_id) tc1
left join tc1 tc2 on tc2.test_suit_type_id =3D tc1.test_suit_type_id
where tc1.id =3D 3879=

pgsql-bugs by date:

Previous
From:
Date:
Subject: Re: Win32: Postgre 8.3.1 does not work with Active perl 5.10
Next
From: Christoph Becker
Date:
Subject: Re: BUG #4180: PANIC while PQExec on Client with differen locale from database