我让 pg_search 使用 multisearch 在我的 Rails 3.2.3 应用程序上工作。然后我在这篇文章中实现了 nertzy(pg_search 的作者)提供的初始化程序。. 现在,当我运行搜索时,出现以下错误:
PG::Error: ERROR: operator does not exist: text % unknown
LINE 1: ... ((coalesce("pg_search_documents"."content", '')) % 'searchterm...
^
HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.
我的视图是使用以下代码呈现的:
<%= @pg_search_documents.each do |pg_search_document| %>
<%= pg_search_document.searchable.title %>
<% end %>
我的其余设置可以在这里找到。 任何帮助深表感谢。