You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I forgot that queries and values are stored backwards so that wildcard prefix searching works.
The queries that return results order by the fields, but the fields are backwards so this doesn't work right.
Need to either add an order by in the sql code, or just sort the results in go, which is probably just as fast, and will work the same on sqlite and postgresql.
The text was updated successfully, but these errors were encountered:
I forgot that queries and values are stored backwards so that wildcard prefix searching works.
The queries that return results order by the fields, but the fields are backwards so this doesn't work right.
Need to either add an order by in the sql code, or just sort the results in go, which is probably just as fast, and will work the same on sqlite and postgresql.
The text was updated successfully, but these errors were encountered: