1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Avoid confusion start_parse_str function with tsearch V1

This commit is contained in:
Teodor Sigaev
2003-12-05 14:27:42 +00:00
parent 59b1a23028
commit 8f678600c2
3 changed files with 9 additions and 8 deletions

View File

@ -42,7 +42,7 @@ Datum prsd_start(PG_FUNCTION_ARGS);
Datum
prsd_start(PG_FUNCTION_ARGS)
{
start_parse_str((char *) PG_GETARG_POINTER(0), PG_GETARG_INT32(1));
tsearch2_start_parse_str((char *) PG_GETARG_POINTER(0), PG_GETARG_INT32(1));
PG_RETURN_POINTER(NULL);
}
@ -67,7 +67,7 @@ Datum
prsd_end(PG_FUNCTION_ARGS)
{
/* ParserState *p=(ParserState*)PG_GETARG_POINTER(0); */
end_parse();
tsearch2_end_parse();
PG_RETURN_VOID();
}