Re: [9.1] 2 bugs with extensions - Mailing list pgsql-hackers

From Dimitri Fontaine
Subject Re: [9.1] 2 bugs with extensions
Date
Msg-id m2txukzro1.fsf@2ndQuadrant.fr
Whole thread Raw
In response to Re: [9.1] 2 bugs with extensions  (Marko Kreen <markokr@gmail.com>)
Responses Re: [9.1] 2 bugs with extensions  (Marko Kreen <markokr@gmail.com>)
List pgsql-hackers
Marko Kreen <markokr@gmail.com> writes:
>> Can we work out a minimal example to reproduce the bug?
>
> Yes, the above text or sql/pgq_coop/sql/pgq_coop_init_ext.sql
>
> I guess you could replace pgq_coop with any extension just
> consisting of just functions.

I did just that, with a single function, and couldn't reproduce the
problem either in 9.1 nor in master, with relocatable = true then with
relocatable = false and schema = 'pg_catalog' as in your repository.

The extension has those files contents:
 Makefile   EXTENSION = extschema   DATA = extschema--unpackaged--1.0.sql extschema.sql extschema--1.0.sql
PG_CONFIG= pg_config   PGXS := $(shell $(PG_CONFIG) --pgxs)   include $(PGXS)
 
 extschema.control   # extschema extension   comment = 'debug extension schema handling'   default_version = '1.0'
relocatable= false   schema = 'pg_catalog'
 
 extschema.sql   create schema ext;   create or replace function ext.extschema() returns int language sql   as $$
select1; $$;
 
 extschema--unpackaged--1.0.sql   alter extension extschema add schema ext;   alter extension extschema add function
ext.extschema();
 extschema--1.0.sql   create schema ext;   create or replace function ext.extschema() returns int language sql   as $$
select1; $$;
 

So I guess that needs some more work to reproduce the bug.

>> (The Makefile in skytools/sql/pgq_coop fails on my OS)
>
> How does it fail?  Are you using gnu make?  What version?

I guess sed is the problem here, it's a BSD variant:
 dim ~/skytools/sql/pgq_coop make pgq_coop--unpackaged--3.1.sql sed: 1: "/^\\/{s/\\i //;p}\n": extra characters at the
endof p command sed: 1: "/^\\/{s/\\i //;p}\n": extra characters at the end of p command sed: 1: "/^\\/{s/\\i //;p}\n":
extracharacters at the end of p command cat pgq_coop.upgrade.sql > pgq_coop--unpackaged--3.1.sql
 
 sed --version   sed: illegal option -- - usage: sed script [-Ealn] [-i extension] [file ...]        sed [-Ealn] [-i
extension][-e script] ... [-f script_file] ... [file ...]   
 
Regards,
-- 
Dimitri Fontaine
http://2ndQuadrant.fr     PostgreSQL : Expertise, Formation et Support



pgsql-hackers by date:

Previous
From: Jeff Janes
Date:
Subject: Re: autovacuum stress-testing our system
Next
From: Tom Lane
Date:
Subject: Re: autovacuum stress-testing our system