diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-09-03 00:39:26 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-09-03 00:39:26 +0000 |
commit | 2abae34a2e8fde42be731b4e18d44cd08901464d (patch) | |
tree | f555c8fc5d653c24ccc407a06f46e5f1bbbf40f7 /src/backend/commands/proclang.c | |
parent | fcfe801ab84c124d4103f9afb1140c9c2558cb54 (diff) | |
download | postgresql-2abae34a2e8fde42be731b4e18d44cd08901464d.tar.gz postgresql-2abae34a2e8fde42be731b4e18d44cd08901464d.zip |
Implement function-local GUC parameter settings, as per recent discussion.
There are still some loose ends: I didn't do anything about the SET FROM
CURRENT idea yet, and it's not real clear whether we are happy with the
interaction of SET LOCAL with function-local settings. The documentation
is a bit spartan, too.
Diffstat (limited to 'src/backend/commands/proclang.c')
-rw-r--r-- | src/backend/commands/proclang.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/commands/proclang.c b/src/backend/commands/proclang.c index e396e0018d0..c77d2e946d6 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 - * $PostgreSQL: pgsql/src/backend/commands/proclang.c,v 1.72 2007/03/26 16:58:38 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/commands/proclang.c,v 1.73 2007/09/03 00:39:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -142,6 +142,7 @@ CreateProceduralLanguage(CreatePLangStmt *stmt) PointerGetDatum(NULL), PointerGetDatum(NULL), PointerGetDatum(NULL), + PointerGetDatum(NULL), 1, 0); } @@ -174,6 +175,7 @@ CreateProceduralLanguage(CreatePLangStmt *stmt) PointerGetDatum(NULL), PointerGetDatum(NULL), PointerGetDatum(NULL), + PointerGetDatum(NULL), 1, 0); } |