Re: gin/gist indexes show twice

Поиск
Список
Период
Сортировка
От Guillaume Lelarge
Тема Re: gin/gist indexes show twice
Дата
Msg-id 4D9054B9.8080006@lelarge.info
обсуждение исходный текст
Ответ на Re: gin/gist indexes show twice  (Timon <timosha@gmail.com>)
Ответы Re: gin/gist indexes show twice  (Timon <timosha@gmail.com>)
Список pgadmin-hackers
Le 28/03/2011 10:57, Timon a écrit :
> yup, seem that problem is not with git/gist indexes.
> I have found the query for this grid in file
> pgadmin/schema/pgIndex.cpp line 670.
>
> I run this query in Sql Query tool and get same results:
> SELECT
>     indexrelname,
>     idx_scan, idx_tup_read, idx_tup_fetch,
>     pg_size_pretty(pg_relation_size(indexrelid)),
>     refclassid, refobjid, deptype,
>     refclassid::regclass, refobjid::regclass
> FROM pg_stat_all_indexes stat
>     JOIN pg_class cls ON cls.oid=indexrelid
>     LEFT JOIN pg_depend dep ON (dep.classid = cls.tableoid AND dep.objid
> = cls.oid AND dep.refobjsubid = '0')
> --    LEFT OUTER JOIN pg_constraint con ON (con.tableoid = dep.refclassid
> AND con.oid = dep.refobjid)
> WHERE schemaname = 'public'
>     AND
>     stat.relname = 'user_attr_text'
>     --AND con.contype IS NULL
> ORDER BY indexrelname
>

I'm wondering why you commented the left join on pg_constraint. It could
be your issue.

pgAdmin doesn't have these lines commented, and, AFAICT, it works. See

http://git.postgresql.org/gitweb?p=pgadmin3.git;a=blob;f=pgadmin/schema/pgIndex.cpp;h=4f270eedc03fd9e8fd3033ec627ca304462ff7bd;hb=HEAD#l670.


--
Guillaume
 http://www.postgresql.fr
 http://dalibo.com

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Timon
Дата:
Сообщение: Re: gin/gist indexes show twice
Следующее
От: Dave Page
Дата:
Сообщение: pgAdmin III commit: Fix the GCC build.