BUG #15692: infinity loop

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: allyanaliev(at)gmail(dot)com
Subject: BUG #15692: infinity loop
Date: 2019-03-13 10:05:09
Message-ID: 15692-b183b1ba5d6c2449@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 15692
Logged by: Alisher Aliev
Email address: allyanaliev(at)gmail(dot)com
PostgreSQL version: Unsupported/Unknown
Operating system: CentOS Linux 7
Description:

create table numer (n numeric);
insert into numer values (1);
insert into numer values (2);
insert into numer values (3);
select * from numer;
update numer set n = n * 10;
update numer set n = n * 7777777777777777777777777;
update numer set n = n ^ 1000;
update numer set n = n ^ 1000;

At last command PostgreSQL comming inside infinity loop.

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Oleksandr Shulgin 2019-03-13 11:00:13 Re: BUG #15692: infinity loop
Previous Message Peter Eisentraut 2019-03-13 09:28:11 Re: BUG #15631: Generated as identity field in a temporary table with on commit drop corrupts system catalogs