Re: [BUGS] "--enable-thread-safety" fails on snapshot version

2007-06-11 Thread George Sakkis
On 6/11/07, Tom Lane <[EMAIL PROTECTED]> wrote: "George Sakkis" <[EMAIL PROTECTED]> writes: > After digging in config.log, the error turns out to be the lack of the > a test file: > conftest.c:144:43: ./src/test/thread/thread_test.c: No such file or directory > Actually the whole src/test dire

Re: [BUGS] "--enable-thread-safety" fails on snapshot version

2007-06-11 Thread Tom Lane
"George Sakkis" <[EMAIL PROTECTED]> writes: > After digging in config.log, the error turns out to be the lack of the > a test file: > conftest.c:144:43: ./src/test/thread/thread_test.c: No such file or directory > Actually the whole src/test directory is missing from the snapshot > versions. It'

[BUGS] "--enable-thread-safety" fails on snapshot version

2007-06-11 Thread George Sakkis
I tried to configure with "--enable-thread-safety" the snapshot version and it fails with: "This platform is not thread-safe. Check the file 'config.log'for the exact reason." After digging in config.log, the error turns out to be the lack of the a test file: conftest.c:144:43: ./src/test/thre

[BUGS] BUG #3382: Service fails to start with option -w

2007-06-11 Thread Christian Andritzky
The following bug has been logged online: Bug reference: 3382 Logged by: Christian Andritzky Email address: [EMAIL PROTECTED] PostgreSQL version: 8.0.13 Operating system: Windows XP SP2 Description:Service fails to start with option -w Details: The pgsql-8.0 Win32 s

Re: [BUGS] BUG #3381: Bad sort order for UTF-8 texts on sk_SK.UTF-8 locale on 8.2.4

2007-06-11 Thread Tom Lane
"Ujo Jozef" <[EMAIL PROTECTED]> writes: > Description:Bad sort order for UTF-8 texts on sk_SK.UTF-8 locale on > 8.2.4 Your test case works as expected for me. Maybe there's something hosed about the locale files on your machine? Does plain old sort(1) sort the way you're expecting? Does

[BUGS] BUG #3381: Bad sort order for UTF-8 texts on sk_SK.UTF-8 locale on 8.2.4

2007-06-11 Thread Ujo Jozef
The following bug has been logged online: Bug reference: 3381 Logged by: Ujo Jozef Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.4 Operating system: free bsd 6.2 Description:Bad sort order for UTF-8 texts on sk_SK.UTF-8 locale on 8.2.4 Details: -- SAMPLE

Re: [BUGS] BUG #3378: UTF-8 upper() and lower() don't work

2007-06-11 Thread Thomas H.
hi kenneth these special characters work fine here: select lower('ÆØÅ'), upper('æøå'), lower('Æble, tørret'), upper('Æble, tørret'); result: æøå ÆØÅ æble, tørretÆBLE, TØRRET as pavel hinted, you probably aren't using the proper locale settings cheers, thomas Original M