Re: [BUGS] BUG #2429: Explain does not report object's schema

From: Martijn van Oosterhout <kleptog(at)svana(dot)org>
To: Gurjeet Singh <singh(dot)gurjeet(at)gmail(dot)com>
Cc: pgsql-hackers(at)postgresql(dot)org, "Jim C(dot) Nasby" <jnasby(at)pervasive(dot)com>, Cristiano Duarte <cunha17(at)gmail(dot)com>
Subject: Re: [BUGS] BUG #2429: Explain does not report object's schema
Date: 2006-05-16 11:13:59
Message-ID: 20060516111359.GD976@svana.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-hackers

On Tue, May 16, 2006 at 04:36:36PM +0530, Gurjeet Singh wrote:
> If a big JOIN query takes N minutes on MS SQL Server, and I wish
> to see the plan why it is taking that long, one would expect me to
> enable 'Show Execution Plan' in the SQL Query Analyzer (similar to
> PG's EXPLAIN ANALYZE). And when I do that, the query now takes more
> than 2*N minutes to come back. I assume this extra delay is caused by
> the overhead of extra processing it does at row-source level (like how
> many rows passed through this row-source, average row-size, etc.).

I posted a patch last week on -patches which should dramatically cut
the overhead of EXPLAIN ANALYZE. Perhaps you could try that and report
your experience.

http://archives.postgresql.org/pgsql-patches/2006-05/msg00158.php

BTW, just showing the plan takes no time at all, just use EXPLAIN
without the ANALYZE.

Have a nice day,
--
Martijn van Oosterhout <kleptog(at)svana(dot)org> http://svana.org/kleptog/
> From each according to his ability. To each according to his ability to litigate.

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2006-05-16 14:38:37 Re: BUG #2440: TEMP TABLES in Postgres 8.1.3
Previous Message Gurjeet Singh 2006-05-16 11:06:36 Re: [BUGS] BUG #2429: Explain does not report object's schema

Browse pgsql-hackers by date

  From Date Subject
Next Message Martijn van Oosterhout 2006-05-16 11:28:43 Re: Wrong plan for simple join with index on FK
Previous Message Gurjeet Singh 2006-05-16 11:06:36 Re: [BUGS] BUG #2429: Explain does not report object's schema