> Hello!
>
> Look at this:
>
> --
> adb=> create table hh (dd char(2) default user, ff int4);
> CREATE
> adb=> insert into hh (ff) values (5);
> INSERT 572034 1
> adb=> select * from hh;
> dd |ff
> +--
> leon| 5
> (1 row)
> --
>
> How can I understand that?
Leon wrote:
>
> Hello!
>
> Look at this:
I, after a short investigation, I found that it is a BUG!!!
Now I logged in as Postgres. Consider:
---
adb=> select * from hh;
dd |ff
+--
leon| 5
le | 7
(2 rows)
adb=> insert into hh (ff) values (9);
INSERT 572224 1
adb=> select * from h