Обсуждение: build from src extension files missing
PostgreSQL: 9.1.4
Linux Red Hat 6.x
I built PostgreSQL 9.1.3 from source with no issues a while back. The below files were found in the folder pgsql-9.1/share/extension:
adminpack--1.0.sql
adminpack.control
pg_buffercache--1.0.sql
pg_buffercache--unpackaged--1.0.sql
pg_buffercache.control
plpgsql--1.0.sql
plpgsql--unpackaged--1.0.sql
plpgsql.control
Today I built from source PostgreSQL 9.1.4. I find that the folder pgsql-9.1/share/extension has only these files in it:
plpgsql--1.0.sql
plpgsql--unpackaged--1.0.sql
plpgsql.control
How do I get the adminpack to show up?
Thanks,
Lance Campbell
Software Architect
Web Services at Public Affairs
217-333-0382
--
Matheus de Oliveira
Bacharelado em Ciências de Computação
Laboratório de Computação de Alto Desempenho - LCAD
Instituto de Ciências Matemáticas e de Computação - ICMC
Universidade de São Paulo - USP
PostgreSQL: 9.1.4
Linux Red Hat 6.x
I built PostgreSQL 9.1.3 from source with no issues a while back. The below files were found in the folder pgsql-9.1/share/extension:
adminpack--1.0.sql
adminpack.control
pg_buffercache--1.0.sql
pg_buffercache--unpackaged--1.0.sql
pg_buffercache.control
plpgsql--1.0.sql
plpgsql--unpackaged--1.0.sql
plpgsql.control
Today I built from source PostgreSQL 9.1.4. I find that the folder pgsql-9.1/share/extension has only these files in it:
plpgsql--1.0.sql
plpgsql--unpackaged--1.0.sql
plpgsql.control
How do I get the adminpack to show up?
Take a look at "contrib/adminpack/". To install:
$ cd contrib/adminpack/
$ make && make install
$ psql <you database and authentication options> -c "CREATE EXTENSION adminpack"
--
Matheus de Oliveira