mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Standard pgindent run for 8.1.
This commit is contained in:
@ -39,26 +39,22 @@ typedef struct
|
||||
void parse_cfgdict(text *in, Map ** m);
|
||||
|
||||
/* return struct for any lexize function */
|
||||
typedef struct {
|
||||
/* number of variant of split word , for example
|
||||
Word 'fotballklubber' (norwegian) has two varian to split:
|
||||
( fotball, klubb ) and ( fot, ball, klubb ). So, dictionary
|
||||
should return:
|
||||
nvariant lexeme
|
||||
1 fotball
|
||||
1 klubb
|
||||
2 fot
|
||||
2 ball
|
||||
2 klubb
|
||||
|
||||
*/
|
||||
uint16 nvariant;
|
||||
typedef struct
|
||||
{
|
||||
/*
|
||||
* number of variant of split word , for example Word 'fotballklubber'
|
||||
* (norwegian) has two varian to split: ( fotball, klubb ) and ( fot,
|
||||
* ball, klubb ). So, dictionary should return: nvariant lexeme 1
|
||||
* fotball 1 klubb 2 fot 2 ball 2 klubb
|
||||
*
|
||||
*/
|
||||
uint16 nvariant;
|
||||
|
||||
/* currently unused */
|
||||
uint16 flags;
|
||||
uint16 flags;
|
||||
|
||||
/* C-string */
|
||||
char *lexeme;
|
||||
} TSLexeme;
|
||||
char *lexeme;
|
||||
} TSLexeme;
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user