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

9
contrib/tsearch/morph.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef __MORPH_H__
#define __MORPH_H__
void initmorph(void);
char* lemmatize( char* word, int *len, int type );
bool is_stoptype(int type);
#endif