PostgreSQL - PL/pgSQL Fundamentals
Identify the error in the following function definition:
CREATE FUNCTION multiply_by_two(x integer) RETURNS integer AS $$ BEGIN RETURN x * 2 END; $$ LANGUAGE plpgsql;
