GNOME Bugzilla – Bug 721199
Search (upnp:class derivedFrom "object.item.imageItem" and @refID exists false) in "Artist" virtual container fails
Last modified: 2018-05-22 12:43:32 UTC
Search fails with "SQLite error 1: no such column: m.class"
looks like actually using the sort_criteria lead to removing the hard-coded sorting by m.class which in turn caused an implicit select on that field... The SQL wasn't right in the first place and only worked by accident.
eh Could someone explain me, why SELECT 'all_place_holder' AS _column , 1 , 1 UNION SELECT DISTINCT m.album AS _column ,m.class,1 FROM meta_data AS m WHERE _column IS NOT NULL AND ((m.class = 'object.item.audioItem.musicTrack' ) AND (m.author = 'Dire Straits')) ORDER BY m.class ASC ,_column ASC LIMIT 0,10; works in the sqlite3 binary but not in the media-export plugin?
Seems to be related to that "union"
This is partially "fixed" by removing the union with commit 48c10b636ef8bd94c164753afd957182019198b8
-- GitLab Migration Automatic Message -- This bug has been migrated to GNOME's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/rygel/issues/60.