| From: | tgl(at)postgresql(dot)org (Tom Lane) |
|---|---|
| To: | pgsql-committers(at)postgresql(dot)org |
| Subject: | pgsql: Fix Assert failure in ExpandColumnRefStar --- what I thought was |
| Date: | 2007-09-27 17:42:09 |
| Message-ID: | 20070927174209.16695753E4C@cvs.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
Log Message:
-----------
Fix Assert failure in ExpandColumnRefStar --- what I thought was a can't
happen condition can happen given incorrect input. The real problem is that
gram.y should try harder to distinguish * from "*" --- the latter is a legal
column name per spec, and someday we ought to treat it that way. However
fixing that is too invasive for a back-patch, and it's too late for the 8.3
cycle too. So just reduce the Assert to a plain elog for now. Per report
from NikhilS.
Tags:
----
REL8_2_STABLE
Modified Files:
--------------
pgsql/src/backend/parser:
parse_target.c (r1.149 -> r1.149.2.1)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_target.c?r1=1.149&r2=1.149.2.1)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2007-09-27 18:15:36 | pgsql: Add virtual transaction IDs to CSVLOG output, so that messages |
| Previous Message | Tom Lane | 2007-09-27 17:42:03 | pgsql: Fix Assert failure in ExpandColumnRefStar --- what I thought was |