The following bug has been logged online:
Bug reference: 4344
Logged by: Domingo Alvarez Duarte
Email address: [EMAIL PROTECTED]
PostgreSQL version: 8.3.3
Operating system: windows
Description:initdb -L timezone directory
Details:
When specifing a non default
The following bug has been logged online:
Bug reference: 4338
Logged by: Domingo Alvarez Duarte
Email address: [EMAIL PROTECTED]
PostgreSQL version: 8.2.9
Operating system: linux
Description:Order by seems to trim some characters before sort
Details:
I have a test
when executing the code bellow:
---
create table test_unique(i1 integer, i2 integer, unique(i1,i2));
insert into test_unique(1,null);
insert into test_unique(1,null);
insert into test_unique(1,null);
---
all "inserts" terminate sucefully, if there isn't "null" values it works
fine.