Re: String Translation

From: Sean Chittenden <sean(at)chittenden(dot)org>
To: Josh Berkus <josh(at)agliodbs(dot)com>
Cc: David Wheeler <david(at)kineticode(dot)com>, sfpug(at)postgresql(dot)org
Subject: Re: String Translation
Date: 2003-10-16 17:59:59
Message-ID: 20031016175959.GD86551@perrin.nxad.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: sfpug

> David,
>
> > active NUMERIC(1,0) NOT NULL
> > DEFAULT 1
> > CONSTRAINT ck_sd_tile__active
> > CHECK (active IN (0,1)),
>
> Why is this field NUMERIC if it only accepts 0 or 1? NUMERIC takes
> up seven times the storage and memory as INT2 would.

Or for that matter, use BOOL and save another byte as BOOL is only one
byte on disk. -sc

--
Sean Chittenden

In response to

Browse sfpug by date

  From Date Subject
Next Message Dror Matalon 2003-10-16 18:01:11 Re: String Translation
Previous Message Josh Berkus 2003-10-16 17:54:15 Re: String Translation