diff options
| author | Tom Lane | 2008-09-19 19:03:41 +0000 |
|---|---|---|
| committer | Tom Lane | 2008-09-19 19:03:41 +0000 |
| commit | 4e57668da475f47242d8552df371a3dbef5205f8 (patch) | |
| tree | e57955d9d4e771ce6a2412651e98a060044d9d37 /src/include/tsearch | |
| parent | e2b7d0c65c611ae3044eb3a49ada71aa22cbca80 (diff) | |
Create a selectivity estimation function for the text search @@ operator.
Jan Urbanski
Diffstat (limited to 'src/include/tsearch')
| -rw-r--r-- | src/include/tsearch/ts_type.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/tsearch/ts_type.h b/src/include/tsearch/ts_type.h index a546d015b58..3d679c22f72 100644 --- a/src/include/tsearch/ts_type.h +++ b/src/include/tsearch/ts_type.h @@ -5,7 +5,7 @@ * * Copyright (c) 1998-2008, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/tsearch/ts_type.h,v 1.13 2008/07/14 00:51:45 tgl Exp $ + * $PostgreSQL: pgsql/src/include/tsearch/ts_type.h,v 1.14 2008/09/19 19:03:41 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -153,6 +153,9 @@ extern Datum ts_rankcd_wtt(PG_FUNCTION_ARGS); extern Datum ts_rankcd_ttf(PG_FUNCTION_ARGS); extern Datum ts_rankcd_wttf(PG_FUNCTION_ARGS); +extern Datum tsmatchsel(PG_FUNCTION_ARGS); +extern Datum tsmatchjoinsel(PG_FUNCTION_ARGS); + extern Datum ts_typanalyze(PG_FUNCTION_ARGS); |
