-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpg_textparser.c
More file actions
49 lines (41 loc) · 821 Bytes
/
pg_textparser.c
File metadata and controls
49 lines (41 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*-------------------------------------------------------------------------
*
* pg_textparser.c
* Text search parser
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "fmgr.h"
#include "textdata.h"
PG_MODULE_MAGIC;
PG_FUNCTION_INFO_V1(textparser_start);
PG_FUNCTION_INFO_V1(textparser_nexttoken);
PG_FUNCTION_INFO_V1(textparser_end);
PG_FUNCTION_INFO_V1(textparser_lextype);
PG_FUNCTION_INFO_V1(textparser_headline);
Datum
textparser_start(PG_FUNCTION_ARGS)
{
PG_RETURN_NULL();
}
Datum
textparser_nexttoken(PG_FUNCTION_ARGS)
{
PG_RETURN_NULL();
}
Datum
textparser_end(PG_FUNCTION_ARGS)
{
PG_RETURN_NULL();
}
Datum
textparser_lextype(PG_FUNCTION_ARGS)
{
PG_RETURN_NULL();
}
Datum
textparser_headline(PG_FUNCTION_ARGS)
{
PG_RETURN_NULL();
}