Problems with Greatest

From: Teddy Schmitz <teddy(dot)schmitz(at)actuallywedo(dot)com>
To: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Problems with Greatest
Date: 2017-02-16 04:32:41
Message-ID: SINPR0101MB1694638AB27175EAAC4F106E835A0@SINPR0101MB1694.apcprd01.prod.exchangelabs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello,

I have a query using Greatest that hangs and never returns when called with two tables.

Postgres Version: 9.6

Tables

t1{ id bigint }

t2 { id bigint }

they are sharing a sequence

the query

select greatest(max(t1.id), max(t2.id)) from t1, t2;

The purpose was to call setval on the sequence after doing a bulk data load into the database. But this query never returns. I have tried it with various combinations,

select greatest(max(t1.id), 6) from t1; -> This returns

select greatest(max(t1.id), 6) from t1, t2; -> This never returns.

The query does work if there is only a few hundred items between the tables but I'm importing about ~300,000 rows between the two tables. I looked at pg_stat_activity and it says the query is active

I worked around this problem using a union all query but I'm wondering if this is a bug or I am just using greatest wrong.

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Teddy Schmitz 2017-02-16 04:38:29 Re: Problems with Greatest
Previous Message Patrick B 2017-02-16 02:12:13 Re: How to evaluate "explain analyze" correctly after "explain" for the same statement ?