diff options
| author | Teodor Sigaev <teodor@sigaev.ru> | 2009-08-18 10:30:41 +0000 |
|---|---|---|
| committer | Teodor Sigaev <teodor@sigaev.ru> | 2009-08-18 10:30:41 +0000 |
| commit | a88a48011c00b6daa12e170f70b0b34cf9247113 (patch) | |
| tree | c7ad23782b3c2aa3ce19bc04a81c97f394ab58de /src/include/tsearch | |
| parent | 77dfb64df4c1e7f2662b0199971ff4af289cb00e (diff) | |
| download | postgresql-a88a48011c00b6daa12e170f70b0b34cf9247113.tar.gz | |
Introduce filtering dictionary support to tsearch. Propagate --nolocale option
to CREATE DATABASE command in pg_regress to allow correct checking of
locale-sensitive contrib modules.
Diffstat (limited to 'src/include/tsearch')
| -rw-r--r-- | src/include/tsearch/ts_public.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/tsearch/ts_public.h b/src/include/tsearch/ts_public.h index 61a3d22025..ffdc698f41 100644 --- a/src/include/tsearch/ts_public.h +++ b/src/include/tsearch/ts_public.h @@ -6,7 +6,7 @@ * * Copyright (c) 1998-2009, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/tsearch/ts_public.h,v 1.15 2009/07/16 06:33:45 petere Exp $ + * $PostgreSQL: pgsql/src/include/tsearch/ts_public.h,v 1.16 2009/08/18 10:30:41 teodor Exp $ * *------------------------------------------------------------------------- */ @@ -101,6 +101,7 @@ typedef struct #define TSL_ADDPOS 0x01 #define TSL_PREFIX 0x02 +#define TSL_FILTER 0x04 /* * Struct for supporting complex dictionaries like thesaurus. |
