PostgreSQL - Advanced Features
Identify the error in this composite type usage:
CREATE TYPE employee AS (name text, age integer);
CREATE TABLE staff (id serial, info employee);
INSERT INTO staff (info) VALUES ('John', 30);