Skip to content

Commit

Permalink
Update SQL engine snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
tlento committed May 22, 2024
1 parent a2e3c3b commit 17b3135
Show file tree
Hide file tree
Showing 146 changed files with 33,730 additions and 12,347 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,27 @@ SELECT
FROM (
-- Join Standard Outputs
SELECT
listings_latest_src_28000.country AS listing__country_latest
subq_9.listing__country_latest AS listing__country_latest
, users_latest_src_28000.home_state_latest AS user__home_state_latest
FROM ***************************.dim_listings_latest listings_latest_src_28000
FROM (
-- Constrain Output with WHERE
SELECT
subq_8.user
, listing__country_latest
FROM (
-- Read Elements From Semantic Model 'listings_latest'
SELECT
country AS listing__country_latest
, user_id AS user
FROM ***************************.dim_listings_latest listings_latest_src_28000
) subq_8
WHERE listing__country_latest = 'us'
) subq_9
FULL OUTER JOIN
***************************.dim_users_latest users_latest_src_28000
ON
listings_latest_src_28000.user_id = users_latest_src_28000.user_id
) subq_8
subq_9.user = users_latest_src_28000.user_id
) subq_12
WHERE listing__country_latest = 'us'
GROUP BY
user__home_state_latest

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,27 @@ SELECT
FROM (
-- Join Standard Outputs
SELECT
listings_latest_src_28000.country AS listing__country_latest
subq_9.listing__country_latest AS listing__country_latest
, users_latest_src_28000.home_state_latest AS user__home_state_latest
FROM ***************************.dim_listings_latest listings_latest_src_28000
FROM (
-- Constrain Output with WHERE
SELECT
subq_8.user
, listing__country_latest
FROM (
-- Read Elements From Semantic Model 'listings_latest'
SELECT
country AS listing__country_latest
, user_id AS user
FROM ***************************.dim_listings_latest listings_latest_src_28000
) subq_8
WHERE listing__country_latest = 'us'
) subq_9
FULL OUTER JOIN
***************************.dim_users_latest users_latest_src_28000
ON
listings_latest_src_28000.user_id = users_latest_src_28000.user_id
) subq_8
subq_9.user = users_latest_src_28000.user_id
) subq_12
WHERE listing__country_latest = 'us'
GROUP BY
user__home_state_latest

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,27 @@ SELECT
FROM (
-- Join Standard Outputs
SELECT
listings_latest_src_28000.country AS listing__country_latest
subq_9.listing__country_latest AS listing__country_latest
, users_latest_src_28000.home_state_latest AS user__home_state_latest
FROM ***************************.dim_listings_latest listings_latest_src_28000
FROM (
-- Constrain Output with WHERE
SELECT
subq_8.user
, listing__country_latest
FROM (
-- Read Elements From Semantic Model 'listings_latest'
SELECT
country AS listing__country_latest
, user_id AS user
FROM ***************************.dim_listings_latest listings_latest_src_28000
) subq_8
WHERE listing__country_latest = 'us'
) subq_9
FULL OUTER JOIN
***************************.dim_users_latest users_latest_src_28000
ON
listings_latest_src_28000.user_id = users_latest_src_28000.user_id
) subq_8
subq_9.user = users_latest_src_28000.user_id
) subq_12
WHERE listing__country_latest = 'us'
GROUP BY
user__home_state_latest

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,27 @@ SELECT
FROM (
-- Join Standard Outputs
SELECT
listings_latest_src_28000.country AS listing__country_latest
subq_9.listing__country_latest AS listing__country_latest
, users_latest_src_28000.home_state_latest AS user__home_state_latest
FROM ***************************.dim_listings_latest listings_latest_src_28000
FROM (
-- Constrain Output with WHERE
SELECT
subq_8.user
, listing__country_latest
FROM (
-- Read Elements From Semantic Model 'listings_latest'
SELECT
country AS listing__country_latest
, user_id AS user
FROM ***************************.dim_listings_latest listings_latest_src_28000
) subq_8
WHERE listing__country_latest = 'us'
) subq_9
FULL OUTER JOIN
***************************.dim_users_latest users_latest_src_28000
ON
listings_latest_src_28000.user_id = users_latest_src_28000.user_id
) subq_8
subq_9.user = users_latest_src_28000.user_id
) subq_12
WHERE listing__country_latest = 'us'
GROUP BY
user__home_state_latest
Loading

0 comments on commit 17b3135

Please sign in to comment.