Следующий запрос приводит к сбою python ('python.exe столкнулся с проблемой ...'
Процесс завершен с кодом выхода -1073741819
Запрос:
create temp table if not exists MM_lookup2 as
select lower(Album) || lower(SongTitle) as concat, ID
from MM.songs
where artist like '%;%' collate nocase
Если я изменяю с «как» на =, он работает как ожидалось, например,
create temp table if not exists MM_lookup2 as
select lower(Album) || lower(SongTitle) as concat, ID
from MM.songs
where artist = '%;%' collate nocase
Я использую Python v2.7.2 с любой версией sqlite, которая там поставляется.
Проблемный запрос выполняется без проблем за пределами Python.