From e2e96963f5821d0125c52ac56edfbfde706fa732 Mon Sep 17 00:00:00 2001 From: Anthony DeBarros Date: Thu, 30 Sep 2021 20:59:23 -0400 Subject: [PATCH] Minor formatting during proofreading --- Chapter_16/Chapter_16.sql | 1 + Chapter_17/Chapter_17.sql | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Chapter_16/Chapter_16.sql b/Chapter_16/Chapter_16.sql index 5a1438b..f01db67 100644 --- a/Chapter_16/Chapter_16.sql +++ b/Chapter_16/Chapter_16.sql @@ -128,6 +128,7 @@ FROM films WHERE film @> '{"title": "The Incredibles"}'::jsonb; -- Listing 16-8: Demonstrating the <@ containment operator + SELECT film ->> 'title' AS title, film ->> 'year' AS year FROM films diff --git a/Chapter_17/Chapter_17.sql b/Chapter_17/Chapter_17.sql index 9bb6a0d..c39015f 100644 --- a/Chapter_17/Chapter_17.sql +++ b/Chapter_17/Chapter_17.sql @@ -192,7 +192,7 @@ BEGIN ELSE 3 END; RAISE NOTICE 'personal_days updated!'; -END +END; $$ LANGUAGE plpgsql;