1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

txtidx datatype for full text indexing with GiST.

From Oleg Bartunov and Teodor Sigaev.
This commit is contained in:
Tom Lane
2001-10-12 23:19:09 +00:00
parent c24216bea8
commit b57705673d
27 changed files with 24874 additions and 5 deletions

11
contrib/tsearch/parser.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef __PARSER_H__
#define __PARSER_H__
char *token;
int tokenlen;
int tsearch_yylex(void);
void start_parse_str(char*, int);
void start_parse_fh(FILE*, int);
void end_parse(void);
#endif