2007/10/3, Alvaro Herrera <[EMAIL PROTECTED]>:
> Sergey Konoplev escribió:
>
> > > AFAIK, pl/pgsql does listen for SIGINT during execution, but I don't nkow
> > > abuot plpython.
> >
> > How can we find it out?
>
> Let's see one of the functions to find out if anyone else can reproduce
> the problem.
>

It happens with simple queries also. For example:

select * from  (
    select d.*, cto.full_name, cast(st.name || ', ' || r.name as
varchar) as cityname
    from
        drivers d
        join cars_trailers_owners cto on
            d.cars_trailers_owner_id = cto.id
        join settles st on
            d.settle_id = st.id
        join regions r on
            st.region_id = r.id
    order by sname, name, pname
) as sq

-- 
Regards,
Sergey Konoplev

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

Reply via email to