Обсуждение: Feature request: display index valid/invalid status

Поиск
Список
Период
Сортировка

Feature request: display index valid/invalid status

От
gabrielle
Дата:
Hi there!

I'm a fairly new user of PgAdmin.  Thanks to the dev team for building a great GUI :)

I'd like to be able to view an index's valid/invalid status (indisvalid from pg_catalog.pg_index) from PgAdmin.

It looks like the logical place to put this is in the "Properties" tab for that index.

I'm happy to attempt a patch for this myself, but will need some assistance as I know very little C, and no C++ whatsoever. :)

Thanks!

gabrielle

Re: Feature request: display index valid/invalid status

От
Dave Page
Дата:
Hi Gabrielle

On Fri, Mar 22, 2013 at 7:21 PM, gabrielle <gorthx@gmail.com> wrote:
> Hi there!
>
> I'm a fairly new user of PgAdmin.  Thanks to the dev team for building a
> great GUI :)
>
> I'd like to be able to view an index's valid/invalid status (indisvalid from
> pg_catalog.pg_index) from PgAdmin.
>
> It looks like the logical place to put this is in the "Properties" tab for
> that index.

Yep, should be quite simple.

> I'm happy to attempt a patch for this myself, but will need some assistance
> as I know very little C, and no C++ whatsoever. :)

Excellent :-). What is your preferred development platform? I know you
have a Mac, but it might be a little quicker to get up and running on
one of the popular Linux platforms if you have a VM to hand, as they
usually have wxWidgets available in their package repos.

Whatever you have, you'll need to checkout the pgAdmin source code -
there are instructions for doing that here:
http://www.pgadmin.org/development/git.php

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



Re: Feature request: display index valid/invalid status

От
gabrielle
Дата:
On Sat, Mar 23, 2013 at 5:00 AM, Dave Page <dpage@pgadmin.org> wrote:
> I'm happy to attempt a patch for this myself, but will need some assistance
> as I know very little C, and no C++ whatsoever. :)
 
Excellent :-). What is your preferred development platform? I know you
have a Mac, but it might be a little quicker to get up and running on
one of the popular Linux platforms if you have a VM to hand, as they
usually have wxWidgets available in their package repos.

Whatever you have, you'll need to checkout the pgAdmin source code -
there are instructions for doing that here:
http://www.pgadmin.org/development/git.php

Got it!  (:thumbsup: for the instructions in the INSTALL file.)   I'm now wreaking wanton destruction while I figure out how this thing works.

g.