diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-07-24 19:11:14 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-07-24 19:11:14 +0000 |
commit | 739adf32eecfe129aea09f543370d886045c7c01 (patch) | |
tree | 57523329d5ef1c98f67755d000402273f366ea8c /src/backend/commands/proclang.c | |
parent | a78777558cfac77563e74fc82edbe2089d7bbc11 (diff) | |
download | postgresql-739adf32eecfe129aea09f543370d886045c7c01.tar.gz postgresql-739adf32eecfe129aea09f543370d886045c7c01.zip |
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/commands/proclang.c')
-rw-r--r-- | src/backend/commands/proclang.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/commands/proclang.c b/src/backend/commands/proclang.c index 5dd70e9e55f..567b59dae80 100644 --- a/src/backend/commands/proclang.c +++ b/src/backend/commands/proclang.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/proclang.c,v 1.37 2002/07/20 05:16:57 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/proclang.c,v 1.38 2002/07/24 19:11:09 petere Exp $ * *------------------------------------------------------------------------- */ @@ -110,8 +110,6 @@ CreateProceduralLanguage(CreatePLangStmt *stmt) values[i++] = BoolGetDatum(stmt->pltrusted); values[i++] = ObjectIdGetDatum(procOid); values[i++] = ObjectIdGetDatum(valProcOid); - values[i++] = DirectFunctionCall1(textin, - CStringGetDatum(stmt->plcompiler)); nulls[i] = 'n'; /* lanacl */ rel = heap_openr(LanguageRelationName, RowExclusiveLock); |