Skip to content

Commit

Permalink
chore(bigquery): update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Apr 26, 2024
1 parent b48f451 commit eaecb15
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,21 @@ WITH `t1` AS (
SELECT
`t3`.`key`
FROM `t1` AS `t3`
INNER JOIN `t1` AS `t4`
ON `t3`.`key` = `t4`.`key`
INNER JOIN (
SELECT
`t2`.`key`
FROM `t1` AS `t2`
) AS `t5`
ON `t3`.`key` = `t5`.`key`
INNER JOIN (
SELECT
`t3`.`key`
FROM `t1` AS `t3`
INNER JOIN `t1` AS `t4`
ON `t3`.`key` = `t4`.`key`
) AS `t6`
ON `t3`.`key` = `t6`.`key`
INNER JOIN (
SELECT
`t2`.`key`
FROM `t1` AS `t2`
) AS `t5`
ON `t3`.`key` = `t5`.`key`
) AS `t7`
ON `t3`.`key` = `t7`.`key`
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
SELECT
`t0`.`x` IN (
SELECT
`t0`.`x`
FROM `t` AS `t0`
WHERE
`t0`.`x` > 2
`t1`.`x`
FROM (
SELECT
`t0`.`x`
FROM `t` AS `t0`
WHERE
`t0`.`x` > 2
) AS `t1`
) AS `InSubquery_x`
FROM `t` AS `t0`

0 comments on commit eaecb15

Please sign in to comment.