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

Add support for FLOAT(p) SQL/92 data type.

Allow ALTER TABLE ADD ( column ) syntax.
This commit is contained in:
Thomas G. Lockhart
1997-09-20 16:11:44 +00:00
parent 007e4d9a07
commit 3bb89a27ee
2 changed files with 62 additions and 34 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.17 1997/09/13 03:13:37 thomas Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.18 1997/09/20 16:11:44 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -85,6 +85,7 @@ static ScanKeyword ScanKeywords[] = {
{"extend", EXTEND},
{"extract", EXTRACT},
{"fetch", FETCH},
{"float", FLOAT},
{"for", FOR},
{"forward", FORWARD},
{"from", FROM},