dbannach

Results 2 comments of dbannach

I was looking for the same feature. It seems you can just append `.order("rank") to your query`: ``` let fts = VirtualTable("fts") ... let query = fts .filter(fts.match("some search string"))...

When I define 'rank' as an expression of String type it lets me use the match() function on it. Not very Swift-y but it seems to work: ``` let rankFunction...