PsqlODBC broken due to int4out(usesysid) - Mailing list pgsql-interfaces

From Patrick Welche
Subject PsqlODBC broken due to int4out(usesysid)
Date
Msg-id 20001002163602.H22505@quartz.newn.cam.ac.uk
Whole thread Raw
Responses Re: PsqlODBC broken due to int4out(usesysid)  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-interfaces
The aim is to import a table from postgresql into M$ access using
PsqlODBC v06-50-0000. This is withPostgreSQL 7.1devel on i386-unknown-netbsdelf1.5E, compiled by GCC egcs-1.1.2
source code of 14 August.

Problem: the pointy clicky box appears with no tables to select for import as
the driver sends:

select relname,usename,relhasrulesfrom pg_class,pg_userwhere relkind = 'r'and relname !~'^xinv[0-9]+'and
int4out(usesysid)=int4out(relowner)order by relname;
 

Reason: AFAICT it really doesn't want "int4out"..

select relname,usename,relhasrulesfrom pg_class,pg_userwhere relkind = 'r'and relname !~'^xinv[0-9]+'and usesysid =
relownerorderby relname;
 

works fine.. Can someone fix please?

Cheers,

Patrick


pgsql-interfaces by date:

Previous
From: Patrick Welche
Date:
Subject: Re: Asking for the [conninfo] definition
Next
From: Tom Lane
Date:
Subject: Re: PsqlODBC broken due to int4out(usesysid)