Misnamed field in subquery does not cause error when field name exists in parent query

From: Rick Innis <rick(dot)innis(at)gmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Misnamed field in subquery does not cause error when field name exists in parent query
Date: 2007-12-22 22:12:45
Message-ID: 1B7BB76A-D750-4808-8104-2EC50DDB2FBA@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Wondering if this is actually a bug, before I file a bug report on it.

Consider this sequence:

=# create table public.test1 (id int);
CREATE TABLE
=# create table public.test2 (it int);
CREATE TABLE
=# select * from test1 where id in (select id from test2);
id
----
(0 rows)

Note that the select from test2, which references a non-existent
field, doesn't cause an error when that statement is used as a
subselect AND the non-existent field does exist in a table referenced
in the outer select.

This is particularly catastrophic when you replace 'select *' by
'delete', as illustrated below.

=# insert into test1 values(1);
INSERT 0 1
=# insert into test1 values(2);
INSERT 0 1
=# insert into test1 values(3);
INSERT 0 1
=# delete from test1 where id in (select id from test2);
DELETE 0
=# select * From test1;
id
----
1
2
3
(3 rows)

=# insert into test2 values(11);
INSERT 0 1
=# insert into test2 values(12);
INSERT 0 1
=# insert into test2 values(13);
INSERT 0 1
=# delete from test1 where id in (select id from test2);
DELETE 3
=# select * From test1;
id
----
(0 rows)

This has bitten me twice, recently, with consequent (though
recoverable) data loss. It may be that SQL is doing exactly as it
should, since 'id' is in scope within the subselect, but if that's
the case it's a nasty gotcha.

Obviously the subselect, when used as a select, does generate an error.

=# select id from test2;
ERROR: column "id" does not exist
LINE 1: select id from test2;
^

Referencing a field that doesn't exist in either also causes an error.

=# select * from test1 where id in (select if from test2);
ERROR: column "if" does not exist
LINE 1: select * from test1 where id in (select if from test2);
^
Insight from wiser SQL heads than mine would be appreciated.

--Rick.

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Michael Glaesemann 2007-12-23 00:14:26 Re: Misnamed field in subquery does not cause error when field name exists in parent query
Previous Message Philippe Lang 2007-12-21 16:01:28 Re: Concatenation through SQL