diff options
author | Tom Lane | 2003-07-27 17:10:07 +0000 |
---|---|---|
committer | Tom Lane | 2003-07-27 17:10:07 +0000 |
commit | e8db9b26d03b9e58a30eb26ec2ee21c92293d3a2 (patch) | |
tree | c2adf83074db369ea5211b06e5181ebabf1a61d8 /contrib/tsearch | |
parent | aeea73d4eceb9b33ff16a69c77bd923a0394a6d0 (diff) |
elog mop-up.
Diffstat (limited to 'contrib/tsearch')
-rw-r--r-- | contrib/tsearch/rewrite.c | 4 | ||||
-rw-r--r-- | contrib/tsearch/txtidx.h | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/contrib/tsearch/rewrite.c b/contrib/tsearch/rewrite.c index 6cd3cb14e78..9d4c885434c 100644 --- a/contrib/tsearch/rewrite.c +++ b/contrib/tsearch/rewrite.c @@ -10,8 +10,6 @@ #include "access/gist.h" #include "access/itup.h" #include "access/rtree.h" -#include "utils/elog.h" -#include "utils/palloc.h" #include "utils/array.h" #include "utils/builtins.h" #include "storage/bufpage.h" @@ -283,7 +281,7 @@ clean_fakeval(ITEM * ptr, int4 *len) resroot = clean_fakeval_intree(root, &result); if (result != V_UNKNOWN) { - elog(NOTICE, "Query contains only stopword(s) or doesn't contain lexem(s), ignored"); + elog(NOTICE, "query contains only stopword(s) or doesn't contain lexeme(s), ignored"); *len = 0; return NULL; } diff --git a/contrib/tsearch/txtidx.h b/contrib/tsearch/txtidx.h index f528cbd5e7c..068f7fb4da2 100644 --- a/contrib/tsearch/txtidx.h +++ b/contrib/tsearch/txtidx.h @@ -9,8 +9,6 @@ #include "access/gist.h" #include "access/itup.h" -#include "utils/elog.h" -#include "utils/palloc.h" #include "utils/builtins.h" #include "storage/bufpage.h" |