[BUGS] BUG #5906: assertion failure in AtCleanup_Portals

2011-03-02 Thread YAMAMOTO Takashi
The following bug has been logged online: Bug reference: 5906 Logged by: YAMAMOTO Takashi Email address: y...@mwd.biglobe.ne.jp PostgreSQL version: 9.1devel Operating system: NetBSD current Description:assertion failure in AtCleanup_Portals Details: i got the follow

Re: [BUGS] BUG #5906: assertion failure in AtCleanup_Portals

2011-03-02 Thread Tom Lane
"YAMAMOTO Takashi" writes: > i got the following with my application, which uses > PQsendPrepare+PQsendQueryPrepared for nearly everything > including ROLLBACK. Can't do anything about that without a test case. regards, tom lane -- Sent via pgsql-bugs mailing list (pgsq

[BUGS] Cannot create collation?

2011-03-02 Thread hubert depesz lubaczewski
hi i'm trying to test collation per column on newest pg head, but I can't seem to get it working. my normal locale is en_US.UTF-8, but in database, for test purposes I used pl_PL.UTF-8. Which works. When I try to create french collation, it seems to work, but fails soon: $ CREATE COLLATION fren

Re: [BUGS] Cannot create collation?

2011-03-02 Thread hubert depesz lubaczewski
On Wed, Mar 02, 2011 at 01:58:02PM +0100, hubert depesz lubaczewski wrote: > $ select * from test3 order by x; > ERROR: could not create locale "fr_FR.UTF-8": Success > What is wrong in here? never mind. sort looked like ok, but in fact apparently was't, and after adding "language-support-fr" pac

Re: [BUGS] Cannot create collation?

2011-03-02 Thread Heikki Linnakangas
On 02.03.2011 14:58, hubert depesz lubaczewski wrote: When I try to create french collation, it seems to work, but fails soon: $ CREATE COLLATION french (LOCALE = 'fr_FR.UTF-8'); CREATE COLLATION Hmm, regardless of what's causing this, I wonder if we should check that the locale works at CREA

Re: [BUGS] Cannot create collation?

2011-03-02 Thread hubert depesz lubaczewski
On Wed, Mar 02, 2011 at 06:00:45PM +0200, Heikki Linnakangas wrote: > On 02.03.2011 14:58, hubert depesz lubaczewski wrote: > >When I try to create french collation, it seems to work, but fails soon: > > > >$ CREATE COLLATION french (LOCALE = 'fr_FR.UTF-8'); > >CREATE COLLATION > > Hmm, regardless

Re: [BUGS] Cannot create collation?

2011-03-02 Thread Peter Eisentraut
On ons, 2011-03-02 at 18:00 +0200, Heikki Linnakangas wrote: > Hmm, regardless of what's causing this, I wonder if we should check > that the locale works at CREATE COLLATION time, rather than fail when > you try to use it. Ie. add a call to pg_newlocale_from_collation() at > the end of DefineColla

[BUGS] BUG #5907: ODBC % bug

2011-03-02 Thread Andrew Considine
The following bug has been logged online: Bug reference: 5907 Logged by: Andrew Considine Email address: andrew.consid...@sncorp.com PostgreSQL version: 9.0.1-1 Operating system: Windows XP Description:ODBC % bug Details: Using a password that contains a "%" symbol

[BUGS] BUG #5908: PgOleDb 1.0.0.20 returns values without the digits after the dot.

2011-03-02 Thread Aldo Ribeiro
The following bug has been logged online: Bug reference: 5908 Logged by: Aldo Ribeiro Email address: aldo...@gmail.com PostgreSQL version: 9.0.3 Operating system: Windows XP SP3 Description:PgOleDb 1.0.0.20 returns values without the digits after the dot. Details: I

Re: [BUGS] BUG #5906: assertion failure in AtCleanup_Portals

2011-03-02 Thread YAMAMOTO Takashi
hi, > "YAMAMOTO Takashi" writes: >> i got the following with my application, which uses >> PQsendPrepare+PQsendQueryPrepared for nearly everything >> including ROLLBACK. > > Can't do anything about that without a test case. > > regards, tom lane here's a small test case.