remove words error when it's a notice

This commit is contained in:
Andy Eschbacher 2016-05-12 08:08:13 -04:00
parent a6c395e3be
commit 9a7c0885bf

View File

@ -143,7 +143,7 @@ BEGIN
-- if no tables are found, raise notice and return null -- if no tables are found, raise notice and return null
IF target_table IS NULL IF target_table IS NULL
THEN THEN
RAISE NOTICE 'Error: No boundaries found for ''%''', boundary_id; RAISE NOTICE 'No boundaries found for ''%''', boundary_id;
RETURN NULL::text; RETURN NULL::text;
END IF; END IF;