Re: [BUGS] select fails on indexed varchars.

2001-01-29 Thread Tom Lane
> links=# select * from foo where a < 'Test0'::bpchar; > a > --- > (0 rows) > links=# > Are you saying the second test should have returned true under C locale? Yes. You are not really in C locale, or at least your postmaster isn't. This looks like ISO sorting rules to me --- perhaps

Re: [BUGS] Problem with inet/cidr convert functions

2001-01-29 Thread Tom Lane
"Vadim I. Passynkov" <[EMAIL PROTECTED]> writes: > test=# select rpad ( host ( '127.0.0.1' ), 15 ); >rpad > --- > 127.0.0.1 > (1 row) This is fixed in current sources (7.1beta4). regards, tom lane

[BUGS] Problem with inet/cidr convert functions

2001-01-29 Thread Vadim I. Passynkov
Hi All, This is not working test=# select rpad ( host ( '127.0.0.1' ), 15 ); rpad --- 127.0.0.1 (1 row) This working OK test=# select rpad ( host ( '127.0.0.1' ) || '', 15 ); rpad - 127.0.0.1 (1 row) Other examples test=# select now() where

Re: [BUGS] large objects overwriting bug

2001-01-29 Thread bs
Tom Lane wrote: > [EMAIL PROTECTED] writes: > >> When overwriting an lo with a larger lo, the old data is not overwritten. This was >supposed to be fixed in 6.5, but it happens in 7.0.3 > > Please try your test case in 7.1beta3 or later. The large-object > support has been rather completely r