Re: Visualize GiST Index

From: Andrew Hunter <ahunter(at)ucalgary(dot)ca>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Andrew Hunter <ahunter(at)ucalgary(dot)ca>, PostgreSQL General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Visualize GiST Index
Date: 2010-09-23 22:37:15
Message-ID: EC987F7B-E9BE-4614-8987-BCAC7D2B6AA9@ucalgary.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Tom,

Thanks very much for your assistance, your suggestion worked a treat. I have updated the gevel people.

Regards

Andrew

On 2010-09-23, at 2:05 PM, Tom Lane wrote:

> Andrew Hunter <ahunter(at)ucalgary(dot)ca> writes:
>> Here is the content of the gevel Makefile
>
>> subdir = contrib/gevel
>> top_builddir = ../..
>> include $(top_builddir)/src/Makefile.global
>
>> MODULES = gevel
>> DATA_built = gevel.sql
>> DOCS = README.gevel
>> REGRESS = gevel
>
>> include $(top_srcdir)/contrib/contrib-global.mk
>
> Oh ... well, there's your problem: it's not even *trying* to use PGXS.
>
> Replace it with this:
>
>
> MODULES = gevel
> DATA_built = gevel.sql
> DOCS = README.gevel
> REGRESS = gevel
>
> ifdef USE_PGXS
> PG_CONFIG = pg_config
> PGXS := $(shell $(PG_CONFIG) --pgxs)
> include $(PGXS)
> else
> subdir = contrib/gevel
> top_builddir = ../..
> include $(top_builddir)/src/Makefile.global
> include $(top_srcdir)/contrib/contrib-global.mk
> endif
>
>
> ... and file a bug with the gevel authors, whoever they are,
> telling them to fix that upstream.
>
> regards, tom lane
>
>

Andrew Hunter PEng RPSurv PhD
Assistant Professor
Department of Geomatics Engineering
Schulich School of Engineering
University of Calgary

T: +403.220.7377
F: +403.284.1980
E: ahunter (at) ucalgary (dot) ca
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

In response to

Browse pgsql-general by date

  From Date Subject
Next Message TJ O'Donnell 2010-09-24 00:28:23 Re: [pgsql-sql] Daily digest v1.3328 (5 messages)
Previous Message Simon Riggs 2010-09-23 22:30:14 Re: Incrementally Updated Backups