Te puedo mostrar la prueba que hice:
Ejecutando:
SELECT version()
SELECT current_setting('datestyle');
create table fechas (fecha varchar(10));
insert into fechas values('1984-06-14');
insert into fechas values('1983-02-21');
insert into fechas values('1989-06-13');
Select
fecha::timestamp without time zone
from fechas;
Estos fueron mis resultados:
"PostgreSQL 8.0.3 on i686-pc-mingw32, compiled by GCC gcc.exe (GCC)
3.4.2 (mingw-special)"
"ISO, MDY"
"1984-06-14 00:00:00"
"1983-02-21 00:00:00"
"1989-06-13 00:00:00"
No tengo un 8.2.4 a mano para probarlo, espero que te sirva.
--
§~^Calabaza^~§ from Villa Elisa, Paraguay