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,
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
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