From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | jarda(dot)urik(at)gmail(dot)com |
Cc: | pgsql-bugs(at)postgresql(dot)org |
Subject: | Re: BUG #14949: array_append() - performance issues (in update) |
Date: | 2017-12-06 16:40:13 |
Message-ID: | 21684.1512578413@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
jarda(dot)urik(at)gmail(dot)com writes:
> I am having (time) issues with UPDATE of Array of INTEGERs:
> Update eg:
> UPDATE id_mng.id_pair SET segment = array_append(segment,7) WHERE
> project_guid = '...' AND id_p IN ( SELECT... )
Hm. In my hands, an array_append update like that doesn't seem to be
any slower in v10 than prior versions. I tried both narrow and wide
initial array values, like this:
drop table if exists id_pair;
create table id_pair(segment int[]);
insert into id_pair select array[i,i+1] from generate_series(1,1000000) i;
\timing on
update id_pair set segment = array_append(segment,7);
\timing off
truncate id_pair;
insert into id_pair select array_agg(i) from generate_series(1,1000) i;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
insert into id_pair select * from id_pair;
\timing on
update id_pair set segment = array_append(segment,7);
\timing off
For me, each of these updates runs in 5 to 6 seconds in any supported
PG version.
Can you provide a self-contained test case that shows what you're
talking about?
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Todd A. Cook | 2017-12-06 16:58:04 | Re: BUG #14932: SELECT DISTINCT val FROM table gets stuck in an infinite loop |
Previous Message | radudragusi | 2017-12-06 16:19:09 | BUG #14951: Install Error on Windows server 2008 R2 |