1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

Support SERIAL column type. Expand into an integer column but mark

is_sequence in the ColumnDef structure.
This commit is contained in:
Thomas G. Lockhart
1998-08-25 15:04:24 +00:00
parent fddd79aa73
commit 12cf9f8075
2 changed files with 18 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.40 1998/08/24 01:39:18 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.41 1998/08/25 15:04:24 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -186,6 +186,7 @@ static ScanKeyword ScanKeywords[] = {
{"second", SECOND_P},
{"select", SELECT},
{"sequence", SEQUENCE},
{"serial", SERIAL},
{"set", SET},
{"setof", SETOF},
{"show", SHOW},