Re: varchar() troubles

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: lockhart(at)alumni(dot)caltech(dot)edu (Thomas G(dot) Lockhart)
Cc: hackers(at)postgresql(dot)org
Subject: Re: varchar() troubles
Date: 1998-01-12 20:50:50
Message-ID: 199801122050.PAA09109@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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)

I am working on it. Look at this:

test=> create table t15 (x varchar(7),x1 int, x2 int, x3 int)
test-> ;
CREATE
test=> insert into t15 values ('as',1,2,3);
INSERT 143436 1
test=> select * from t15;
x |x1|x2|x3
--+--+--+--
as| 2| 3| 0
(1 row)

Srange, huh?

--
Bruce Momjian
maillist(at)candle(dot)pha(dot)pa(dot)us

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1998-01-12 21:01:50 Re: varchar() troubles
Previous Message Brian E. Gallew 1998-01-12 19:57:57 RE: [HACKERS] ODBC & LGPL license...