diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-06 23:55:19 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-06 23:55:19 +0000 |
commit | a77e32d7c5615e302fbc87803086132f1dab99a9 (patch) | |
tree | b03a6846d6909d6b1acb81c82a1e8fe3b98dbbb2 /src/backend/utils/adt/sets.c | |
parent | 488f2785d025a6cc04685cfee4ca3eac0086e2fd (diff) | |
download | postgresql-a77e32d7c5615e302fbc87803086132f1dab99a9.tar.gz postgresql-a77e32d7c5615e302fbc87803086132f1dab99a9.zip |
Apply the core parts of Dennis Bjorklund's patch to allow function
parameters to be declared with names. pg_proc has a column to store
names, and CREATE FUNCTION can insert data into it, but that's all as
yet. I need to do more work on the pg_dump and plpgsql portions of the
patch before committing those, but I thought I'd get the bulky changes
in before the tree drifts under me.
initdb forced due to pg_proc change.
Diffstat (limited to 'src/backend/utils/adt/sets.c')
-rw-r--r-- | src/backend/utils/adt/sets.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/utils/adt/sets.c b/src/backend/utils/adt/sets.c index 45a8b9d5080..33f1ed1a4a8 100644 --- a/src/backend/utils/adt/sets.c +++ b/src/backend/utils/adt/sets.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/sets.c,v 1.61 2003/11/29 19:51:59 pgsql Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/sets.c,v 1.62 2004/01/06 23:55:18 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -65,8 +65,9 @@ SetDefine(char *querystr, Oid elemType) false, /* security invoker */ false, /* isStrict (irrelevant, no args) */ PROVOLATILE_VOLATILE, /* assume unsafe */ - 0, /* parameterCount */ - NULL); /* parameterTypes */ + 0, /* parameterCount */ + NULL, /* parameterTypes */ + NULL); /* parameterNames */ /* * Since we're still inside this command of the transaction, we can't |