[BUGS] BUG #4344: initdb -L timezone directory

2008-08-07 Thread Domingo Alvarez Duarte
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

[BUGS] BUG #4338: Order by seems to trim some characters before sort

2008-08-02 Thread Domingo Alvarez Duarte
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

[BUGS] create unique index doesn't work properly

2001-05-12 Thread Domingo Alvarez Duarte
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.