Compare commits

..

1 Commits

Author SHA1 Message Date
7832c407ee Fix queries on the views with ratings
All checks were successful
continuous-integration/drone/push Build is passing
The old behaviour was a simple join, if there's no rating for the movie,
there's no result for movie. The backend can not return the movie and
does a new GetDetails from online detailers.
2021-08-12 15:43:22 -10:00
2 changed files with 0 additions and 2 deletions

View File

@ -17,4 +17,3 @@ SELECT
FROM shows s
JOIN imdb_ratings r
ON s.imdb_id = r.imdb_id;

View File

@ -17,4 +17,3 @@ SELECT
FROM shows s
LEFT JOIN imdb_ratings r
ON s.imdb_id = r.imdb_id;