Re: [BUGS] BUG #3983: pgxs files still missing in win32 install (8.3.1)

2008-04-15 Thread Magnus Hagander
Joe Conway wrote: > Magnus Hagander wrote: > > Could this be somethingl ike missing PGDLLIMPORT specifications in > > your addon module or something like that? Try checking the names of > > the functions that are actually exported using "depends" or a > > similar tool. > > Ah, that sounds likely,

[BUGS] BUG #4108: PgInstaller Update modify install paths in Registry

2008-04-15 Thread Gildas PRIME
The following bug has been logged online: Bug reference: 4108 Logged by: Gildas PRIME Email address: [EMAIL PROTECTED] PostgreSQL version: 8.3.1 Operating system: XP Professionnal Description:PgInstaller Update modify install paths in Registry Details: On the update

[BUGS] domains missing some default castings

2008-04-15 Thread Pavel Stehule
Hello When I derive domain from some type I expect same castings rules. Minimally for literals. But it's not true: CREATE DOMAIN sixc AS char(6) NOT NULL; CREATE OR REPLACE FUNCTION fxx(sixc) RETURNS sixc AS $$ SELECT 'abcdef'; -- Actual return type is unknown. $$ LANGUAGE SQL; SELECT fxx('abcde