Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8f678600
Commit
8f678600
authored
Dec 05, 2003
by
Teodor Sigaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid confusion start_parse_str function with tsearch V1
parent
59b1a230
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
contrib/tsearch2/wordparser/parser.h
contrib/tsearch2/wordparser/parser.h
+4
-4
contrib/tsearch2/wordparser/parser.l
contrib/tsearch2/wordparser/parser.l
+3
-2
contrib/tsearch2/wparser_def.c
contrib/tsearch2/wparser_def.c
+2
-2
No files found.
contrib/tsearch2/wordparser/parser.h
View file @
8f678600
#ifndef __PARSER_H__
#define __PARSER_H__
char
*
token
;
int
tokenlen
;
extern
char
*
token
;
extern
int
tokenlen
;
int
tsearch2_yylex
(
void
);
void
start_parse_str
(
char
*
,
int
);
void
end_parse
(
void
);
void
tsearch2_
start_parse_str
(
char
*
,
int
);
void
tsearch2_
end_parse
(
void
);
#endif
contrib/tsearch2/wordparser/parser.l
View file @
8f678600
...
...
@@ -9,6 +9,7 @@
#define fprintf(file, fmt, msg) ts_error(ERROR, fmt, msg)
char *token = NULL; /* pointer to token */
int tokenlen;
char *s = NULL; /* to return WHOLE hyphenated-word */
YY_BUFFER_STATE buf = NULL; /* buffer to parse; it need for parse from string */
...
...
@@ -280,14 +281,14 @@ ftp"://" {
%%
/* clearing after parsing from string */
void end_parse() {
void
tsearch2_
end_parse() {
if (s) { free(s); s=NULL; }
tsearch2_yy_delete_buffer( buf );
buf = NULL;
}
/* start parse from string */
void start_parse_str(char* str, int limit) {
void
tsearch2_
start_parse_str(char* str, int limit) {
if (buf) end_parse();
buf = tsearch2_yy_scan_bytes( str, limit );
tsearch2_yy_switch_to_buffer( buf );
...
...
contrib/tsearch2/wparser_def.c
View file @
8f678600
...
...
@@ -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
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment