summaryrefslogtreecommitdiff
path: root/src/backend/parser
diff options
context:
space:
mode:
authorPeter Eisentraut2002-07-24 19:11:14 +0000
committerPeter Eisentraut2002-07-24 19:11:14 +0000
commit739adf32eecfe129aea09f543370d886045c7c01 (patch)
tree57523329d5ef1c98f67755d000402273f366ea8c /src/backend/parser
parenta78777558cfac77563e74fc82edbe2089d7bbc11 (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/backend/parser')
-rw-r--r--src/backend/parser/gram.y3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y
index 5647e9f7b1f..0dcecc9d5a5 100644
--- a/src/backend/parser/gram.y
+++ b/src/backend/parser/gram.y
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.348 2002/07/20 05:58:34 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.349 2002/07/24 19:11:10 petere Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@@ -1931,7 +1931,6 @@ CreatePLangStmt:
n->plname = $5;
n->plhandler = $7;
n->plvalidator = $8;
- n->plcompiler = $9;
n->pltrusted = $2;
$$ = (Node *)n;
}