mirror of
https://github.com/postgres/postgres.git
synced 2025-06-22 02:52:08 +03:00
Remove unnecessary comma in enum definition ... some C compilers don't
like that. Per report from J6M.
This commit is contained in:
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/adt/tsquery.c,v 1.14 2008/01/01 19:45:53 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/adt/tsquery.c,v 1.15 2008/01/08 01:04:08 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -105,7 +105,7 @@ typedef enum
|
|||||||
PT_VAL = 2,
|
PT_VAL = 2,
|
||||||
PT_OPR = 3,
|
PT_OPR = 3,
|
||||||
PT_OPEN = 4,
|
PT_OPEN = 4,
|
||||||
PT_CLOSE = 5,
|
PT_CLOSE = 5
|
||||||
} ts_tokentype;
|
} ts_tokentype;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user