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
# @option :headline [String] Append a expression to the selected columns aliased to headline that contains an extract of the matched text.
19
+
# @option :headline [String]
20
+
# Append a expression to the selected columns aliased
21
+
# to headline that contains an extract of the matched text.
19
22
#
20
-
# @option :language [String] The language to use for the search (default: 'simple')
23
+
# @option :language [String]
24
+
# The language to use for the search (default: 'simple')
21
25
#
22
-
# @option :plain [Boolean] Whether a plain search should be used (default: false). In this case, terms should be a single string, and it will do a search where cols contains all of the words in terms. This ignores search operators in terms.
26
+
# @option :plain [Boolean]
27
+
# Whether a plain search should be used (default: false).
28
+
# In this case, terms should be a single string, and it will do a search
29
+
# where cols contains all of the words in terms.
30
+
# This ignores search operators in terms.
23
31
#
24
-
# @option :phrase [Boolean] Similar to :plain, but also adding an ILIKE filter to ensure that returned rows also include the exact phrase used.
32
+
# @option :phrase [Boolean]
33
+
# Similar to :plain, but also adding an ILIKE filter to ensure
34
+
# that returned rows also include the exact phrase used.
25
35
#
26
-
# @option :rank [Boolean] Set to true to order by the rank, so that closer matches are returned first.
36
+
# @option :rank [Boolean]
37
+
# Set to true to order by the rank, so that closer matches are returned first.
27
38
#
28
-
# @option :to_tsquery [Symbol] Can be set to :plain or :phrase to specify the function to use to convert the terms to a ts_query.
39
+
# @option :to_tsquery [Symbol]
40
+
# Can be set to :plain or :phrase to specify the function to use
41
+
# to convert the terms to a ts_query.
29
42
#
30
-
# @option :tsquery [Boolean] Specifies the terms argument is already a valid SQL expression returning a tsquery, and can be used directly in the query.
43
+
# @option :tsquery [Boolean]
44
+
# Specifies the terms argument is already a valid SQL expression returning a tsquery,
45
+
# and can be used directly in the query.
31
46
#
32
-
# @option :tsvector [Boolean] Specifies the cols argument is already a valid SQL expression returning a tsvector, and can be used directly in the query.
47
+
# @option :tsvector [Boolean]
48
+
# Specifies the cols argument is already a valid SQL expression returning a tsvector,
0 commit comments