Domain vs table - Mailing list pgsql-performance

From Michal Szymanski
Subject Domain vs table
Date
Msg-id 5a7361bf-e48c-4dd8-ba6c-4074184d3c55@a32g2000yqm.googlegroups.com
Whole thread Raw
List pgsql-performance
Hi,
We  have table 'user' and one column define status of user, currently
there are 2 valuse 'A' acitve and 'D' deleted.
Currently we define column as domain type ( status_domain with two
possible values)
but I'm not sure is it good solution, maybe it is better create
separate table e.g account_stats and use foreign key in account table?
In our databases we prefer 'domain' solution for column with low
cardinality and when we do not need extra fields related to values
(e.g description). I think such solution should give us better
performance when rows are updated/inserted but I've never make real
comparision to separate table. Havy you made such comparision?

Regards
Michal Szymanski
http://blog.szymanskich.net
http://techblog.szymanskich.net

pgsql-performance by date:

Previous
From: Michal Szymanski
Date:
Subject: Re: Partitioned Tables and ORDER BY
Next
From: Michal Szymanski
Date:
Subject: Re: Domain vs table