8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcec1e6 commit 364ef51Copy full SHA for 364ef51
contrib/tsearch2/wparser_def.c
@@ -229,15 +229,15 @@ prsd_headline(PG_FUNCTION_ARGS)
229
if (min_words >= max_words)
230
ereport(ERROR,
231
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
232
- errmsg("MinWords must be less than MaxWords")));
+ errmsg("MinWords should be less than MaxWords")));
233
if (min_words <= 0)
234
235
236
errmsg("MinWords should be positive")));
237
if (shortword < 0)
238
239
240
- errmsg("ShortWord hould be = 0")));
+ errmsg("ShortWord should be >= 0")));
241
}
242
243
while (hlCover(prs, query, &p, &q))
0 commit comments