The righteous path
You might want to reconsider normalizing your schema. It is not necessary for everyone to "join for even the simplest query". Create a VIEW for that.
Table could look like this:
CREATE TABLE hostname (
hostname_id serial PRIMARY KEY
,hostname text UNIQUE
,host_id int REFERENCES host(host_id) ON UPDATE CASCADE ON DELETE CASCADE
);
The surrogate primary key hostname_id is optional. I prefer to have one. In your case hostname could be the primary key. Create a foreign key constraint to link to the table host.
Create a view like this:
CREATE VIEW v_host AS
SELECT h.*
,array_agg(hn.hostname) AS hostnames
-- ,string_agg(hn.hostname, ', ') AS hostnames -- text instead of array
FROM host h
JOIN hostname hn USING (host_id)
GROUP BY h.host_id; -- works in v9.1+¹
Further queries can use the view like a table.
However, searching for a hostname will be much faster this way:
SELECT *
FROM host h
JOIN hostname hn USING (host_id)
WHERE hn.hostname = 'foobar';
Provided you have an index on host(host_id), which should be the case as it should be the primary key. Plus, the UNIQUE constraint on hostname(hostname) implements the other needed index automatically.
1)Starting with version 9.1, once you list a primary key in the GROUP BY you can skip additional columns for this table and still use them in the SELECT list. The release notes for version 9.1 tell us:
Allow non-GROUP BY columns in the query target list when the primary
key is specified in the GROUP BY clause
Solution for the dark side (a.k.a. "what you actually asked")
If I can't convince you of the righteous path, I will assist on the dark side, too. I am flexible. :)
Here is a demo how to enforce uniqueness of hostnames. I use a table hostname to collect hostnames and a trigger on the table host to keep it up to date. Unique violations raise an error and abort the operation.
CREATE TABLE host(hostnames text[]);
CREATE TABLE hostname(hostname text PRIMARY KEY); -- pk enforces uniqueness
CREATE OR REPLACE FUNCTION trg_host_insupdelbef()
RETURNS trigger AS
$func$
BEGIN
Trigger function
IF TG_OP = 'DELETE' THEN
DELETE FROM hostname h
USING unnest(OLD.hostnames) d(x)
WHERE h.hostname = d.x;
RETURN NEW; -- exit, we are done.
END IF;
IF TG_OP = 'UPDATE' THEN -- split into DELETE & INSERT
IF OLD.hostnames IS DISTINCT FROM NEW.hostnames THEN
DELETE FROM hostname h
USING unnest(OLD.hostnames) d(x)
WHERE h.hostname = d.x;
END IF;
END IF;
INSERT INTO hostname
SELECT unnest(NEW.hostnames);
RETURN NEW;
END;
$func$
LANGUAGE plpgsql;
Trigger:
CREATE TRIGGER host_insupdelbef
BEFORE INSERT OR UPDATE OF hostnames OR DELETE -- requires v.9.0+²
ON host
FOR EACH ROW
EXECUTE PROCEDURE trg_host_insupdelbef();
Test:
INSERT INTO host VALUES('{a,b,c}');
INSERT INTO host VALUES('{d}');
INSERT INTO host VALUES('{e,f}');
-- error:
UPDATE host SET hostnames = '{a,b,d}' WHERE hostnames = '{a,b,c}';
-- no more error:
DELETE FROM host WHERE hostnames = '{d}'
UPDATE host SET hostnames = '{a,b,d}' WHERE hostnames = '{a,b,c}';
SELECT * FROM hostname;
-> SQLfiddle
2)CREATE TRIGGER .. UPDATE OF column_name requires PostgreSQL 9.0 or later.