Re: varchar() troubles - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: varchar() troubles
Date
Msg-id 199801122101.QAA09322@candle.pha.pa.us
Whole thread Raw
In response to Re: varchar() troubles  ("Thomas G. Lockhart" <lockhart@alumni.caltech.edu>)
List pgsql-hackers
> Pretty sure only after but it's hard to tell for sure. My trees for 971204
> and 971222 both core dump on inserts to varchar, but I can't remember what
> else I was doing with the trees at the time. v6.2.1p5 works OK on this:
>
> postgres=> create table t (v varchar(80),i int);
> CREATE
> postgres=> insert into t values ('hi',1);
> INSERT 142735 1
> postgres=> select * from t;
> v |i
> --+-
> hi|1
> (1 row)

The data on disk is OK, so it must be the retrieve code.

--
Bruce Momjian
maillist@candle.pha.pa.us

pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: varchar() troubles
Next
From: Peter T Mount
Date:
Subject: Re: [HACKERS] Re: New pg_pwd patch and stuff