diff options
author | Peter Eisentraut | 2002-07-24 19:11:14 +0000 |
---|---|---|
committer | Peter Eisentraut | 2002-07-24 19:11:14 +0000 |
commit | 739adf32eecfe129aea09f543370d886045c7c01 (patch) | |
tree | 57523329d5ef1c98f67755d000402273f366ea8c /src/include/nodes/parsenodes.h | |
parent | a78777558cfac77563e74fc82edbe2089d7bbc11 (diff) |
Remove unused system table columns:
pg_language.lancompiler
pg_operator.oprprec
pg_operator.oprisleft
pg_proc.proimplicit
pg_proc.probyte_pct
pg_proc.properbyte_cpu
pg_proc.propercall_cpu
pg_proc.prooutin_ratio
pg_shadow.usetrace
pg_type.typprtlen
pg_type.typreceive
pg_type.typsend
Attempts to use the obsoleted attributes of pg_operator or pg_proc
in the CREATE commands will be greeted by a warning. For pg_type,
there is no warning (yet) because pg_dump scripts still contain these
attributes.
Also remove new but already obsolete spellings
isVolatile, isStable, isImmutable in WITH clause. (Use new syntax
instead.)
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index e4c6b625d11..842a0b93d79 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.193 2002/07/18 23:11:32 petere Exp $ + * $Id: parsenodes.h,v 1.194 2002/07/24 19:11:14 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1012,7 +1012,6 @@ typedef struct CreatePLangStmt char *plname; /* PL name */ List *plhandler; /* PL call handler function (qual. name) */ List *plvalidator; /* optional validator function (qual. name) */ - char *plcompiler; /* lancompiler text */ bool pltrusted; /* PL is trusted */ } CreatePLangStmt; |