table schema causes crash

From: <tom(at)minnesota(dot)com>
To: <pgsql-general(at)postgresql(dot)org>
Subject: table schema causes crash
Date: 2002-12-20 18:47:27
Message-ID: 2319.63.226.186.156.1040410047.squirrel@www.minnesota.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

7.2.3

CREATE TABLE imap_passwd (
username varchar(128) NOT NULL PRIMARY KEY,
pw_crypt varchar(128) DEFAULT '' NOT NULL,
pw_cr varchar(128) DEFAULT '' NOT NULL,
name varchar(128) DEFAULT '' NOT NULL,
user_id int DEFAULT 65534 NOT NULL,
group_id int DEFAULT 65534 NOT NULL,
home varchar(255) DEFAULT '' NOT NULL,
maildir varchar(255) DEFAULT '' NOT NULL,
quota varchar(255) DEFAULT '' NOT NULL
);

then at the psql prompt:

\d imap_passwd

will core dump.

---
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index
'imap_passwd_pkey' for table
'imap_passwd'
CREATE
authtest=# \d imap_passwd
Segmentation fault
---

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Bruce Momjian 2002-12-20 18:59:35 Re: table schema causes crash
Previous Message Manfred Koizar 2002-12-20 18:14:45 Re: IN or EXISTS?? faster one