Re: [BUGS] LATIN2 'bssz' and 'bszsz' fails on unique index

2004-05-20 Thread Tom Lane
=?ISO-8859-2?Q?S=FCn?= <[EMAIL PROTECTED]> writes: > If you use Latin2 encoding, you can not have 'bssz' and 'bszsz' in an > unique column in the same time. AFAICS this means that your locale definition considers these strings equal. It is possible that the real problem comes from using an encod

[BUGS] LATIN2 'bssz' and 'bszsz' fails on unique index

2004-05-20 Thread Sün
Hello, If you use Latin2 encoding, you can not have 'bssz' and 'bszsz' in an unique column in the same time. Is this a known bug? Do you have any solution? (I use Latin2 encoding, because I want to order by names, which contains accent characters.) [EMAIL PROTECTED]:~> psql template1 Welcome t

Re: [BUGS] postgres crashes

2004-05-20 Thread Tom Lane
Adam Kempa <[EMAIL PROTECTED]> writes: > I've been installed Postgres 7.4.2 on FreeBSD system and when load > average grow up i've error in postgres like this: >ERROR: permission denied for function varchar >ERROR: permission denied for function varchar > and then postgres crashes. >

Re: [BUGS] BUG #1154: no python interface anymore

2004-05-20 Thread D'Arcy J.M. Cain
On Fri, 14 May 2004 08:21:28 -0400 Tom Lane <[EMAIL PROTECTED]> wrote: > Peter Eisentraut <[EMAIL PROTECTED]> writes: > > Yes. It was supposed to move to http://www.pygresql.org, but that > > web site doesn't seem to exist anymore. > > Hmm. whois shows the pygresql.org domain as PENDING DELETE,

Re: [BUGS] BUG #1154: no python interface anymore

2004-05-20 Thread yruhn
Dear support, In the unfortuenate case that the pygreSQL directory won't be re-added in future PostgreSQL versions, then, at the least, configuring PostgreSQL with the --with-python option should give some kind of error/warning when the directory is empty (and also an instruction of what to do)

[BUGS] postgres crashes

2004-05-20 Thread Adam Kempa
Hello I've been installed Postgres 7.4.2 on FreeBSD system and when load average grow up i've error in postgres like this: ERROR: permission denied for function varchar ERROR: permission denied for function varchar and then postgres crashes. LOG: server process (PID 9787) was terminated

Re: [BUGS] BUG #1145: silent REVOKE failures

2004-05-20 Thread Fabien COELHO
Dear Bruce, > > > Well, if I issue a "REVOKE" and the rights are not revoked and could never > > > have been because I have no right to issue such statement on the object, I > > > tend to call this deep absence of success a "failure". > > > > > If I do the very opposite GRANT, I have a clear "per

Re: [BUGS] int4, int8, real ....division...

2004-05-20 Thread Tom Lane
"=?iso-8859-2?Q?Gyenese_P=E1l_Attila?=" <[EMAIL PROTECTED]> writes: > REASON IS: > SELECT 365*1000 ; > result: -644967296 > wrong This isn't a division problem --- the difficulty is there's no check for overflow in int4 multiplication. (Nor in any of the other integer arithmetic operations,

[BUGS] int4, int8, real ....division...

2004-05-20 Thread Gyenese Pál Attila
pgsql-7.4.2 I think it's not a bug, just interesting results: SELECT 9223372036854775807/(365*1000) ; result: -14300526699 wrong SELECT ( 9223372036854775807/365 )/1000 ; result: 2526951242 good SELECT ( 9223372036854775807::real /(365*1000) ) ; result: -14300526699,6589 w