|
|
|
|
|
by fny
194 days ago
|
|
> slight change in json path syntax (can't think of any right now) can cause SQLite to not use this index It's pretty fragile... -- Just changing the quoting
select * from events where json_extract(data, "$.type") = 'click';
-- Changing the syntax
select * from events where data -> '$.type' = 'click';
Basically anything that alters the text of an expression within the where clause |
|