Hi all.
With the musicbrainz docker container, when I run certain queries I instantly get disconnected. It’s the strangest thing.
This all used to work fine for me. But now if I run this simple query:
SELECT DISTINCT * from musicbrainz.artist a
INNER JOIN musicbrainz.artist_type at ON at.id= a.type AND at.id IN (1,2);
I get a segmentation fault.
But if I remove the DISTINCT
SELECT * from musicbrainz.artist a
INNER JOIN musicbrainz.artist_type at ON at.id= a.type AND at.id IN (1,2);
It works fine!!
Any ideas what would cause this?
This happens in PgAdmin and in DART…
It’s the latest updates of the musicbrainz docker because I just totally started from scratch…
Thanks!