Michael Radziej <[EMAIL PROTECTED]> writes:
> I think bytea should accept ANY value and vaccuum analyze must
> not complain about this.
This is fixed as of 7.4, I think (at least your example case doesn't
fail for me). 7.3 was a bit sloppy about how it treated entries in
pg_statistic ...
Hi,
I hit the following bug:
this is with a 7.3.4 database server (and psql client)
PGCLIENTENCODING="UTF-8"
and a utf-8 encoded database,
pensieve=> create table a(raw bytea);
CREATE TABLE
pensieve=> insert into a values('\770\711\056'::bytea);
INSERT 1112630 1
pensieve=> vacuum analyze a;
VACU