Re: [GENERAL] support for ltree

2015-06-12 Thread Michael Shapiro
e/contrib and /share/extension directories under the > PostgreSQL main directory to see what is available for your version. > > On Fri, Jun 12, 2015 at 8:22 AM, Michael Shapiro > wrote: > >> I am wondering if the contributed module will always be part of >> Postgres? D

[GENERAL] support for ltree

2015-06-12 Thread Michael Shapiro
subsequent versions of Postgres? Are there any plans to make a built-in datatype, like , o, or the various Geometric Types (eg, )? Michael Shapiro Senior Systems Engineer National Center for Supercomputing Applications (NCSA) University of Illinois, Urbana-Champaign (UIUC)

Re: [pgadmin-support] [GENERAL] Postgres case insensitive searches

2013-06-29 Thread Michael Shapiro
I have a table called jobs with ~17 millions records. Without an index on the queue column, the following query select count(*) from jobs where lower(queue) = 'normal' found ~2.6 millions records in 10160ms With the following index: create index lower_queue on jobs (lower(queue)) th