Re: inconsistency in aliasing - Mailing list pgsql-general

From ludwig@kni-online.de
Subject Re: inconsistency in aliasing
Date
Msg-id 2120557778.1009341.1231930923745.JavaMail.webmailer@webmail.1and1.com
Whole thread Raw
In response to inconsistency in aliasing  (Louis-David Mitterrand <vindex+lists-pgsql-general@apartia.org>)
List pgsql-general
I don't know, if this is an inconsistence or a bug, but here a possible workaround:

select current_timestamp::abstime::int4 as score, current_timestamp::abstime::int4 + 1 as "score + 1" order by "score + 1";


Ludwig

This works:



critik=# select current_timestamp::abstime::int4 as score order by score;



This doesn't:



critik=# select current_timestamp::abstime::int4 as score order by score + 1;

ERROR: column "score" does not exist

LINE 1: ...urrent_timestamp::abstime::int4 as score order by score + 1 ...


pgsql-general by date:

Previous
From: "A. Kretschmer"
Date:
Subject: Re: inconsistency in aliasing
Next
From: Louis-David Mitterrand
Date:
Subject: Re: inconsistency in aliasing