Re: The empty list? - Mailing list pgsql-sql

From Tom Lane
Subject Re: The empty list?
Date
Msg-id 21991.1162506863@sss.pgh.pa.us
Whole thread Raw
In response to The empty list?  (Jesper Krogh <jesper@krogh.cc>)
Responses Re: The empty list?
List pgsql-sql
Jesper Krogh <jesper@krogh.cc> writes:
> Whereas this gives a syntax error:

> # select 1 in ();
> ERROR:  syntax error at or near ")" at character 14
> LINE 1: select 1 in ();
>                      ^

If we took that syntax it would probably mean a zero-element row,
not an empty IN list.  But I'm disclined to allow either, as it'd
seem entirely too likely to convert plain old typos into queries
the system will think are valid ...

I think the short answer why the spec disallows this (which it does)
is that it considers the right-hand side to be a table, and with
absolutely nothing there, there is no way to impute a rowtype to the
table.
        regards, tom lane


pgsql-sql by date:

Previous
From: Jesper Krogh
Date:
Subject: The empty list?
Next
From: "Aaron Bono"
Date:
Subject: Re: The empty list?