7.0 bug ?? - Mailing list pgsql-bugs

From claud yu
Subject 7.0 bug ??
Date
Msg-id 390CD4A6331.1B23CLAUD@tera.cs.tku.edu.tw
Whole thread Raw
Responses Re: 7.0 bug ??  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
-----------------------------------------------
freechange-# \d accountloginrec
            Table "accountloginrec"
      Attribute       |    Type     | Modifier
----------------------+-------------+----------
 regaccounttype       | smallint    | not null
 regloginname         | char(20)    | not null
 reglgoinpassword     | varchar(20) | not null
 regaccounthint       | varchar(32) |
 regaccounteffectdate | date        |
 regaccountexpireeate | date        |
 eshopcode            | integer     | not null
 companycode          | integer     |
freechange-#
freechange=# select eshopcode from accountloginrec;
 eshopcode
-----------
        10
        11
        11
        12
        13
        14
(6 rows)

freechange=# insert into accountloginrec values (1,'test','test','test',NOW(),NOW()+30,Max(eshopcode)+1,null);
ERROR:  Attribute 'eshopcode' not found
-----------------------------------------------
The same syntax at 6.5.3 is OK !!
It happen at 7.0rc1 and 7.0rc2

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: creating temp table...
Next
From: Tom Lane
Date:
Subject: Re: 7.0 bug ??