btw I also tried a new index: ```sql CREATE INDEX project_tiktok_link_id_idx ON project (tiktok_link
btw I also tried a new index:
and do the query
and it seems to use the index now
and do the query
and it seems to use the index now
CREATE INDEX project_tiktok_link_id_idx ON project (tiktok_link, id);SELECT ... FROM project INDEXED BY project_tiktok_link_id_idx WHERE tiktok_link IS NULL and id < '01HQ81GRDX539N2EJSW1ECGRMY'(tiktok_link IS NULL OR tiktok_link = '') in index does not work like mysqltiktok_link covers that anywayindexed by reduces my rows read?indexed byINDEXED BY after all, sqlite is smart enough to choose the right index for me.ABC%wrangler@3.29.0