Advertisement
IncludeUrl

Untitled

Sep 16th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT
  2.     date,
  3.     pos,
  4.     author,
  5.     message,
  6.     ts_headline('russian', message, q, 'HighlightAll = true, StartSel = "", StopSel = ""') AS body
  7. FROM
  8.     logs,
  9.     plainto_tsquery('russian', $1) AS q
  10. WHERE
  11.     to_tsvector('russian', message) @@ q
  12.     AND NOT author = ANY ($2)
  13. ORDER BY
  14.     date ASC,
  15.     pos DESC
  16. LIMIT 2000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement