You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the markdown files at the Analyses section, the contents of the file analyses/full_moon_no_sleep.sql are like this:
WITH fullmoon_reviews AS (
SELECT * FROM {{ ref('fullmoon_reviews') }}
)
SELECT
is_full_moon,
review_sentiment,
COUNT(*) as reviews
FROM
fullmoon_reviews
GROUP BY
is_full_moon,
review_sentiment
ORDER BY
is_full_moon,
review_sentiment
The reference is ref('fullmoon_reviews'), but it should be ref("mart_full_moon_reviews") or ref("mart_fullmoon_reviews"), but the "mart" part is certainly missing. This is only a mistake in the markdown file, it is of course correct in the source file.
Sincerely,
Bence from Datapao
The text was updated successfully, but these errors were encountered:
BALOGHBence
changed the title
Wrong reference in full_moon_no_sleep.sql
Wrong references in the supplementary materials
Feb 13, 2025
Hi Zoli!
In the markdown files at the Analyses section, the contents of the file
analyses/full_moon_no_sleep.sql
are like this:The reference is
ref('fullmoon_reviews')
, but it should beref("mart_full_moon_reviews")
orref("mart_fullmoon_reviews")
, but the "mart" part is certainly missing. This is only a mistake in the markdown file, it is of course correct in the source file.Sincerely,
Bence from Datapao
The text was updated successfully, but these errors were encountered: