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
query:=fmt.Sprintf("SELECT id FROM \"%s\".internal_search_indices ", slug)
80
-
err:=s.db.Raw(query+" WHERE table_info = ? and tsv_text @@ to_tsquery('simple',? || ':*') ORDER BY id OFFSET ? LIMIT ?", tableInfo, search, offset, limit).Scan(&model).Error
81
+
err:=s.db.Raw(query+" WHERE table_info = ? and tsv_text @@ to_tsquery('simple',? || ':*') ORDER BY ts_rank_cd(tsv_text, to_tsquery('simple','ho' || ':*')) DESC OFFSET ? LIMIT ?", tableInfo, search, offset, limit).Scan(&model).Error
0 commit comments