-
Notifications
You must be signed in to change notification settings - Fork 86
Open
Labels
Description
If you search Discogs for "D 250944" it comes back to "WOW Hits 2024".
If I do a search of the releases.xml file it shows up
<companies><company><id>68920</id><name>BMG Direct</name><catno>D 250944</catno><entity_type>38</entity_type>
It looks like it's associated with the release_company but there's no catno column in the release_company table.
The only catno column is in release_label and a search reveals nothing:
MariaDB [discogs]> select * from release_label where catno like '%D 250944%';
Empty set (4.703 sec)
Can you please fix this so that all the exported data is includes in the tables. This simple omission means that I lose access to the whole CD release that I'm trying to get data for. Obviously, it'll require a change in the schema and the .net and python parsers.