Re: BUG #2429: Explain does not report object's schema - Mailing list pgsql-bugs

From Cristiano Duarte
Subject Re: BUG #2429: Explain does not report object's schema
Date
Msg-id e3st6e$2hh5$1@news.hub.org
Whole thread Raw
In response to BUG #2429: Explain does not report object's schema  ("Cristiano da Cunha Duarte" <cunha17@gmail.com>)
List pgsql-bugs
Hi Lars,

Lars Haugseth wrote:
> * cunha17@gmail.com ("Cristiano da Cunha Duarte") wrote:
> |
> | 1) PROBLEM:
> |
> | Explain command does not report the schema of objects, so when using
> | objects having the same name but in different schemas, they will apear
> | as being the same object.
> |
> | 2) HOW TO REPRODUCE:
>
> Don't know whether this would help in your situation, but you can make the
> output of EXPLAIN disambiguous by using table aliases:
>
> EXPLAIN
>  SELECT *
>    FROM schema1.mytable AS mt1, schema2.mytable AS mt2
>   WHERE 1=0
>
> (The AS keyword is optional.)
>
> The aliases will be included in the query plan output.
>
Thanks for the notice, but to do this, I would have to raise errors on
queries having tables with the same name, which is not what I meant.

But, if there is no other way, I'll do it.

pgsql-bugs by date:

Previous
From: Lars Haugseth
Date:
Subject: Re: BUG #2429: Explain does not report object's schema
Next
From: Casey Duncan
Date:
Subject: Re: BUG #2428: ERROR: out of memory, running INSERT SELECT statement