Minor formatting during proofreading

This commit is contained in:
Anthony DeBarros 2021-09-30 20:59:23 -04:00
parent df175c9a39
commit e2e96963f5
2 changed files with 2 additions and 1 deletions

View File

@ -128,6 +128,7 @@ FROM films
WHERE film @> '{"title": "The Incredibles"}'::jsonb; WHERE film @> '{"title": "The Incredibles"}'::jsonb;
-- Listing 16-8: Demonstrating the <@ containment operator -- Listing 16-8: Demonstrating the <@ containment operator
SELECT film ->> 'title' AS title, SELECT film ->> 'title' AS title,
film ->> 'year' AS year film ->> 'year' AS year
FROM films FROM films

View File

@ -192,7 +192,7 @@ BEGIN
ELSE 3 ELSE 3
END; END;
RAISE NOTICE 'personal_days updated!'; RAISE NOTICE 'personal_days updated!';
END END;
$$ $$
LANGUAGE plpgsql; LANGUAGE plpgsql;