Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong join in the Waze parser #519

Closed
koodekraker opened this issue Sep 17, 2024 · 2 comments
Closed

Wrong join in the Waze parser #519

koodekraker opened this issue Sep 17, 2024 · 2 comments

Comments

@koodekraker
Copy link

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

koodekraker pushed a commit to koodekraker/ALEAPP_fork that referenced this issue Sep 17, 2024
stark4n6 added a commit that referenced this issue Sep 17, 2024
@stark4n6
Copy link
Collaborator

Closing thanks to PR

@koodekraker
Copy link
Author

Your're welcome, thanks for the awesome tool!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants