Re: operator does not exist: smallint <> smallint[] - Mailing list pgsql-hackers

From Euler Taveira de Oliveira
Subject Re: operator does not exist: smallint <> smallint[]
Date
Msg-id 493E7731.1070405@timbira.com
Whole thread Raw
In response to Re: operator does not exist: smallint <> smallint[]  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: operator does not exist: smallint <> smallint[]  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Tom Lane escreveu:
> Euler Taveira de Oliveira <euler@timbira.com> writes:
>> I saw a report at .br mailing list [1] complaining about the message's title.
>> I do not try to investigate it.  Am I missing something?
> 
>> euler=# select attname from pg_attribute where attnum > 0 and attnum <>
>> ALL(select conkey from pg_constraint where conrelid = attrelid and contype = 'p');
>> ERROR:  operator does not exist: smallint <> smallint[]
> 
> It's entirely right: there's no such operator.
> 
Out of curiosity, why the other queries work?

euler=# select 1::smallint <> ALL(array[2::smallint, 3::smallint]);?column?
----------t
(1 registro)

euler=# select 1::smallint <> ALL(array[1::smallint, 2::smallint,3::smallint]);?column?
----------f
(1 registro)

euler=# select 1::smallint <> ALL(array[1, 2, 3]);?column?
----------f
(1 registro)


--  Euler Taveira de Oliveira http://www.timbira.com/


pgsql-hackers by date:

Previous
From: Gregory Stark
Date:
Subject: posix_fadvise v22
Next
From: Tom Lane
Date:
Subject: Re: Multiplexing SUGUSR1