BUG #1272: text + numeric wrong behaviour - Mailing list pgsql-bugs

From PostgreSQL Bugs List
Subject BUG #1272: text + numeric wrong behaviour
Date
Msg-id 20040929094640.2C1805A1061@www.postgresql.com
Whole thread Raw
Responses Re: BUG #1272: text + numeric wrong behaviour  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
The following bug has been logged online:

Bug reference:      1272
Logged by:          Damjan Pipan

Email address:      damjan.pipan@xlab.si

PostgreSQL version: 7.3.2

Operating system:   linux 2.4

Description:        text + numeric wrong behaviour

Details:

CREATE TABLE a1(
  description text,
  amount numeric(9,2)
);

INSERT INTO a1 VALUES ('asdasd', 370);
SELECT * FROM a1;

SELECT description::varchar, amount FROM a1;

first select does not return amount, second does.

pgsql-bugs by date:

Previous
From: "PostgreSQL Bugs List"
Date:
Subject: BUG #1271: Installation problems (cannot execute initdb.exe)
Next
From: "Magnus Hagander"
Date:
Subject: Re: BUG #1271: Installation problems (cannot execute initdb.exe)