dumpall prob

From: "Patrick Welche" <prlw1(at)newn(dot)cam(dot)ac(dot)uk>
To: hackers(at)postgresql(dot)org
Subject: dumpall prob
Date: 1999-12-15 16:24:27
Message-ID: E11yHE3-0001o7-00@quartz.newn.cam.ac.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

CREATE UNIQUE INDEX "ethernet_ip_key" on "ethernet" using btree ( "ip" "network_ops" );

was generated by dumpall. "network_ops" apparently don't exist (not sure what
is should be called). Changing to
using btree ( "ip" )
was sufficient to fix, but I don't know what it should be to fix dumpall.

patrimoine=> create unique index "ethernet_ip_key" on "ethernet" using btree ( "ip" );
CREATE
patrimoine=> \d ethernet_ip_key
Index "ethernet_ip_key"
Attribute | Type
-----------+------
ip | inet
unique btree

Cheers,

Patrick

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Don Baccus 1999-12-15 16:27:36 Re: [HACKERS] AND &&
Previous Message Vince Vielhaber 1999-12-15 16:00:43 Re: [HACKERS] AND &&