[BUGS] ODBC / startup and existing pidfile

2005-01-09 Thread Hansjörg Herrbold
Hello, we a working with libodbc++ (http://libodbcxx.sourceforge.net/). We have tested our software on Windows XP together witch Postgres 8.0 RC1 (installed with pginstaller) Unfortunately an every SELECT only invalid data is retreived from the database (e.g. a VARCHAR row) with libodbc++ and the

[BUGS] How to intall postgresql-docs-7.4.6 on win2000?

2005-01-09 Thread 王亮
Hello:   I download the postgresql-docs-7.4.6.tar.gz  and unzip it .I can`t intall it and the help documents is for unix! How can I intall postgresql  on my win2000? Please help me thanks!     Wang http://www.cnperl.com Do You Yahoo!?

[BUGS] Fwd: How to intall postgresql-docs-7.4.6 on win2000?

2005-01-09 Thread Wangliang
Note: forwarded message attached. http://www.cnperl.com Do You Yahoo!? 150万曲MP3疯狂搜,带您闯入音乐殿堂美女明星应有尽有,搜遍美图、艳图和酷图 1G就是1000兆,雅虎电邮自助扩容!--- Begin Message --- Hello:   I download the postgresql-docs-7.4.6.tar.gz  and unzip it .I can`t intall it and the help documents is for unix! How can I intall postgre

[BUGS] tsearch2 headline function fails to parse integer arguments

2005-01-09 Thread Tom Hebbron
SELECT headline('some text to search',to_tsquery('text'),'StartSel=, StopSel=, ShortWord=3') On 8.0beta1 through 8.0rc3 this query fails with ERROR: invalid input syntax for integer: "3" The same is reported when using any of the argument in the option string that take integers (MinWords and Ma

[BUGS] BUG #1373: constraints, rules

2005-01-09 Thread Bazsi
The following bug has been logged online: Bug reference: 1373 Logged by: Bazsi Email address: [EMAIL PROTECTED] PostgreSQL version: 7.2.2 Operating system: debian linux Description:constraints, rules Details: I have the following four table: CREATE TABLE folder (

[BUGS] BUG #1376: configure out of date

2005-01-09 Thread Robert Sussland
The following bug has been logged online: Bug reference: 1376 Logged by: Robert Sussland Email address: [EMAIL PROTECTED] PostgreSQL version: 8.0 Operating system: Mac OS X 10.3.7 Description:configure out of date Details: Before installing, a user may run ./config

Re: [BUGS] [pgsql-hackers-win32] Initdb failing for no apparent reason in

2005-01-09 Thread Andrew Dunstan
Steve McWilliams wrote: Nevermind, I found out what this was. Turned out that the customer machine in question had particularly heavy security settings and so the enetaware account did not have permission to write into the directory where it was trying to create PGDATA. Once I widened the settin

[BUGS] BUG #1375: Problem with Dollar qouting functions

2005-01-09 Thread Tony Caduto
The following bug has been logged online: Bug reference: 1375 Logged by: Tony Caduto Email address: [EMAIL PROTECTED] PostgreSQL version: 8.0 Operating system: Gentoo Linux Description:Problem with Dollar qouting functions Details: I restored my 7.4.x database to th

[BUGS] BUG #1374: windows installer

2005-01-09 Thread Fel
The following bug has been logged online: Bug reference: 1374 Logged by: Fel Email address: [EMAIL PROTECTED] PostgreSQL version: 8.0 Operating system: Windows XP Description:windows installer Details: windows installer by rc2 ignores setting of istallation path, it

Re: [BUGS] BUG #1375: Problem with Dollar qouting functions

2005-01-09 Thread Peter Eisentraut
Tony Caduto wrote: > There appears to be a problem with functions that have been restored > from 7.4.x and dollar quoting, after it has been saved once, then the > EOL markers replaced the problem goes away. No, it's a problem with notepad randomly reformatting your files. Use a different editor

Re: [BUGS] BUG #1376: configure out of date

2005-01-09 Thread Peter Eisentraut
Robert Sussland wrote: > python, etc. are possible to build. running the configure script with > the options ./configure --with-perl > > results in an appparently successful configure, but make returns an > error. Telling us which error would help a lot. -- Peter Eisentraut http://developer.post

Re: [BUGS] BUG #1374: windows installer

2005-01-09 Thread Magnus Hagander
>The following bug has been logged online: > >Bug reference: 1374 >Logged by: Fel >Email address: [EMAIL PROTECTED] >PostgreSQL version: 8.0 >Operating system: Windows XP >Description:windows installer >Details: > >windows installer by rc2 ignores setting of istallatio

[BUGS] not a bug but where do i go for info

2005-01-09 Thread Theodore Petrosky
I am trying to use the libpg interface on OS X with rc3. There must have been a change that I am not understanding. When I compile my app (xcode) I get the following error. warning prebinding disabled because dependent library: /usr/local/pgsql/lib/libpq.3.dylib in not prebound Can someone help

Re: [BUGS] BUG #1373: constraints, rules

2005-01-09 Thread Tom Lane
"Bazsi" <[EMAIL PROTECTED]> writes: > PostgreSQL version: 7.2.2 > ... > If i want to delete this record from the folder table, then the server > terminate abnormally (sigterm). I tried to reproduce this in current versions (7.2.6, 7.3.7, etc) and could not. So either it was fixed long ago, or you

Re: [BUGS] BUG #1373: constraints, rules

2005-01-09 Thread Michael Fuhr
On Wed, Jan 05, 2005 at 11:38:57AM +, Bazsi wrote: > PostgreSQL version: 7.2.2 That version of PostgreSQL is pretty old. Trying a recent version before reporting a bug is a good idea, as the bug might already have been fixed. > I have the following four table: The SQL statements you posted

Re: [BUGS] BUG #1373: constraints, rules

2005-01-09 Thread Michael Fuhr
On Sun, Jan 09, 2005 at 10:18:47AM -0700, Michael Fuhr wrote: > This statement ran without error in 8.0.0rc4 and 7.4.6. I couldn't duplicate the problem in 7.2.2 either. -- Michael Fuhr http://www.fuhr.org/~mfuhr/ ---(end of broadcast)--- TIP 4:

Re: [BUGS] not a bug but where do i go for info

2005-01-09 Thread Tom Lane
Theodore Petrosky <[EMAIL PROTECTED]> writes: > When I compile my app (xcode) I get the following > error. > warning prebinding disabled because dependent library: > /usr/local/pgsql/lib/libpq.3.dylib in not prebound I googled apple.com for "prebinding" and got some useful-looking hits, such as h

Re: [BUGS] tsearch2 headline function fails to parse integer arguments

2005-01-09 Thread Tom Lane
"Tom Hebbron" <[EMAIL PROTECTED]> writes: > SELECT headline('some text to search',to_tsquery('text'),'StartSel=, > StopSel=, ShortWord=3') > On 8.0beta1 through 8.0rc3 this query fails with > ERROR: invalid input syntax for integer: "3" Thanks for the report. Patch applied. > There also seems