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 Waze parser, the table RECENTS and PLACES are join, but based on the wrong id.
There is a place_id in the RECENTS table, which should be used to join them together instead of the primary key of the RECENTS table itself.
Scripts/artifacts/waze.py:22
join RECENTS on PLACES.id = RECENTS.id
should be
join RECENTS on PLACES.id = RECENTS.place_id
The text was updated successfully, but these errors were encountered:
koodekraker
pushed a commit
to koodekraker/ALEAPP_fork
that referenced
this issue
Sep 17, 2024
In the Waze parser, the table RECENTS and PLACES are join, but based on the wrong id.
There is a place_id in the RECENTS table, which should be used to join them together instead of the primary key of the RECENTS table itself.
Scripts/artifacts/waze.py:22
join RECENTS on PLACES.id = RECENTS.id
should be
join RECENTS on PLACES.id = RECENTS.place_id
The text was updated successfully, but these errors were encountered: