I have a table that looks like this:
id, integer, Primary Key, not null name, character varying created, timestamp without timezone, not null, default: now()
INSERT INTO employee (name) SELECT NULL FROM generate_series(1,10000) i;