Invalid SQL not rejected? - Mailing list pgsql-admin

From Craig James
Subject Invalid SQL not rejected?
Date
Msg-id CAFwQ8reYH0cuHhFnnv_USHrXvjmwY9+Fw_KEuqhQjecU_-bAtQ@mail.gmail.com
Whole thread Raw
Responses Re: Invalid SQL not rejected?  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Invalid SQL not rejected?  (Julian Glass <tempura@internode.on.net>)
List pgsql-admin
Hmmm.... the subselect is invalid, but not rejected.  The outer select returns every row in the customer_order_matches table.  This seems pretty wrong. This is PG 9.2.1 running on Ubuntu.


db=> select count(1) from customer_order_matches where customer_order_item_id in (select customer_order_item_id from customer_order where customer_order_id = 105862140);
 count
-------
 36180
(1 row)

db=> select customer_order_item_id from customer_order where customer_order_id = 105862140;
ERROR:  column "customer_order_item_id" does not exist
LINE 1: select customer_order_item_id from customer_order where cust...
               ^

Craig

pgsql-admin by date:

Previous
From: Tom Lane
Date:
Subject: Re: after 9.2.4 patch vacuumdb -avz not analyzing all tables
Next
From: Tom Lane
Date:
Subject: Re: Invalid SQL not rejected?