Skip to content

Commit

Permalink
chore(oracle): update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth committed Jan 18, 2024
1 parent 4060ce7 commit 3c2660f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SELECT
CASE t0."continent"
CASE "t0"."continent"
WHEN 'NA'
THEN 'North America'
WHEN 'SA'
Expand All @@ -16,10 +16,10 @@ SELECT
THEN 'Antarctica'
ELSE 'Unknown continent'
END AS "cont",
SUM(t0."population") AS "total_pop"
FROM "countries" t0
SUM("t0"."population") AS "total_pop"
FROM "countries" "t0"
GROUP BY
CASE t0."continent"
CASE "t0"."continent"
WHEN 'NA'
THEN 'North America'
WHEN 'SA'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
SELECT
t0."x" IN (
"t0"."x" IN (
SELECT
t1."x"
FROM (
SELECT
t0."x" AS "x"
FROM "t" t0
WHERE
t0."x" > 2
) t1
) AS "InColumn(x, x)"
FROM "t" t0
"t0"."x"
FROM "t" "t0"
WHERE
"t0"."x" > 2
) AS "InSubquery(x)"
FROM "t" "t0"

0 comments on commit 3c2660f

Please sign in to comment.