The following bug has been logged online:
Bug reference: 6080
Logged by: Chris Bandy
Email address: bandy.ch...@gmail.com
PostgreSQL version: 9.0.3
Operating system: Gentoo
Description:information_schema.columns.column_default contains NULL
inconsistently
Details:
W
> 2011/6/28 Renat :
>>
>> create table foo (
>> id bigint not null,
>> date_to timestamp without time zone,
>> CONSTRAINT foo_pkey PRIMARY KEY (id)
>> );
>>
>> CREATE INDEX foo_date_to_index
>> ON foo
>> USING btree
>> (date_to)
>>
>> insert into foo (id, date_to) values (1, now());
>> insert in
On Sat, 18 Jun 2011 04:55:59 +0200, Marinos Yannikos
wrote:
sysctl -w net.ipv4.tcp_tw_reuse=1
This fixed the issue apparently, so bind() seems to choose ports in
TIME_WAIT state for some reason with sin_port=0 and that caused it.
Regards,
Marinos
--
Sent via pgsql-bugs mailing list (p
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Sun, Jun 26, 2011 at 05:27:47AM +, jose javier cabrera centeno wrote:
>
> The following bug has been logged online:
>
> Bug reference: 6078
> Logged by: jose javier cabrera centeno
Ésto no es un bug de PostgreSQL. Por eso te sug
Hello
It working as expected on 9.0.4 Linux. Please, can you recheck your
application? Try to use a console - psql,
postgres=# select * from foo where date_to is null and date_to > '2011-01-01';
id | date_to
+-
(0 rows)
Regards
Pavel Stehule
2011/6/28 Renat :
>
> The following bug
The following bug has been logged online:
Bug reference: 6079
Logged by: Renat
Email address: renat.nasy...@itv.ru
PostgreSQL version: 9.0.4
Operating system: Windows
Description:Wrong select result
Details:
INPUT:
create table foo (
id bigint not null,
date_to tim