Re: BUG #6702: SELECT Query on INDEX

From: Ryan Kelly <rpkelly22(at)gmail(dot)com>
To: alokrawat0212(at)gmail(dot)com
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #6702: SELECT Query on INDEX
Date: 2012-06-22 15:02:11
Message-ID: 20120622150211.GA16675@llserver.lakeliving.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Fri, Jun 22, 2012 at 01:19:50AM +0000, alokrawat0212(at)gmail(dot)com wrote:
> The following bug has been logged on the website:
>
> Bug reference: 6702
> Logged by: Alok Rawat
> Email address: alokrawat0212(at)gmail(dot)com
> PostgreSQL version: 9.1.0
> Operating system: WIN 7
> Description:
>
> Hello all,
>
> I created a Index in postgres.Now i want to fire select query in this Index
> and check data.
This is not a bug. For general questions regarding PostgreSQL, please
use the pgsql-general mailing list.

> Please tell me how to perform this???
PostgreSQL will automatically use your index when querying the table
that has that index, when appropriate. One does not query an index
directly. You might want to understand how to use EXPLAIN to see if your
index is being utilized. See the documentation at:
http://www.postgresql.org/docs/9.1/static/indexes.html
http://www.postgresql.org/docs/9.1/static/using-explain.html

>
> Thanks in advance,
>
>
> --
> Sent via pgsql-bugs mailing list (pgsql-bugs(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-bugs

-Ryan Kelly

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Kevin Grittner 2012-06-22 15:12:52 Re: BUG #6702: SELECT Query on INDEX
Previous Message alokrawat0212 2012-06-22 01:19:50 BUG #6702: SELECT Query on INDEX