mirror of
https://github.com/postgres/postgres.git
synced 2025-11-04 20:11:56 +03:00
From: Michael Meskes <meskes@online-club.de>
This one is against the current archive (so it contains the one I send the other day). It should fix the AIX problems. Andreas, could you please try it? Thanks. + Wed Aug 26 16:17:39 CEST 1998 + + - Sync preproc.y with gram.y + + Thu Aug 27 15:32:23 CEST 1998 + + - Fix some minor glitches that the AIX compiler complains about + - Added patchlevel to library + + Fri Aug 28 15:36:58 CEST 1998 + + - Removed one line of code that AIX complains about since it was not + needed anyway + - Set library version to 2.6.1
This commit is contained in:
@@ -566,7 +566,7 @@ output_statement(char * stmt, int mode)
|
||||
LANCOMPILER, LISTEN, UNLISTEN, LOAD, LOCK_P, LOCATION, MAXVALUE, MINVALUE, MOVE,
|
||||
NEW, NONE, NOTHING, NOTNULL, OIDS, OPERATOR, PROCEDURAL,
|
||||
RECIPE, RENAME, RESET, RETURNS, ROW, RULE,
|
||||
SEQUENCE, SETOF, SHOW, START, STATEMENT, STDIN, STDOUT, TRUSTED,
|
||||
SERIAL, SEQUENCE, SETOF, SHOW, START, STATEMENT, STDIN, STDOUT, TRUSTED,
|
||||
VACUUM, VERBOSE, VERSION, ENCODING
|
||||
|
||||
/* Keywords (obsolete; retain through next version for parser - thomas 1997-12-0 4) */
|
||||
@@ -1083,6 +1083,10 @@ columnDef: ColId Typename ColQualifier
|
||||
{
|
||||
$$ = cat3_str($1, $2, $3);
|
||||
}
|
||||
| ColId SERIAL
|
||||
{
|
||||
$$ = make2_str($1, make1_str(" serial"));
|
||||
}
|
||||
;
|
||||
|
||||
ColQualifier: ColQualList { $$ = $1; }
|
||||
@@ -3795,6 +3799,7 @@ ColId: ident { $$ = $1; }
|
||||
| PRIVILEGES { $$ = make1_str("privileges"); }
|
||||
| RECIPE { $$ = make1_str("recipe"); }
|
||||
| ROW { $$ = make1_str("row"); }
|
||||
| SERIAL { $$ = make1_str("serial"); }
|
||||
| START { $$ = make1_str("start"); }
|
||||
| STATEMENT { $$ = make1_str("statement"); }
|
||||
| TIME { $$ = make1_str("time"); }
|
||||
|
||||
Reference in New Issue
Block a user