We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abc777 commit 3863187Copy full SHA for 3863187
db_schema/queries/v1/chartsRankings.sql
@@ -47,7 +47,7 @@ UNION ALL
47
SELECT
48
'apple' AS platform,
49
'podcast' AS item_type,
50
- CAST(apc.id AS CHAR) AS show_id,
+ apc.id AS show_id,
51
NULL AS episode_id,
52
apc.country AS market,
53
ag.name AS chart_name,
@@ -65,10 +65,10 @@ UNION ALL
65
66
67
'episode' AS item_type,
68
- CAST(aec.podcast_id AS CHAR) AS show_id,
69
- CAST(aec.episode_id AS CHAR) AS episode_id,
+ aec.podcast_id AS show_id,
+ aec.episode_id AS episode_id,
70
aec.country AS market,
71
- ag.name AS chart_name,
+ ag.name AS chart_name,
72
aec.position AS position,
73
aec.date AS chart_date
74
FROM openpodcast_charts.apple_episode_charts aec
0 commit comments