Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
9b5ca7ee
Commit
9b5ca7ee
authored
May 11, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot to handle 'opaque' function arguments in regprocedurein/out.
parent
9f0ae0c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
13 deletions
+19
-13
src/backend/utils/adt/regproc.c
src/backend/utils/adt/regproc.c
+19
-13
No files found.
src/backend/utils/adt/regproc.c
View file @
9b5ca7ee
...
...
@@ -13,7 +13,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/regproc.c,v 1.6
7 2002/05/01 23:06:41
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/regproc.c,v 1.6
8 2002/05/11 00:24:16
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -40,7 +40,7 @@
static
List
*
stringToQualifiedNameList
(
const
char
*
string
,
const
char
*
caller
);
static
void
parseNameAndArgTypes
(
const
char
*
string
,
const
char
*
caller
,
bool
allow_none
,
const
char
*
type0_spelling
,
List
**
names
,
int
*
nargs
,
Oid
*
argtypes
);
...
...
@@ -261,7 +261,7 @@ regprocedurein(PG_FUNCTION_ARGS)
* datatype cannot be used for any system column that needs to receive
* data during bootstrap.
*/
parseNameAndArgTypes
(
pro_name_or_oid
,
"regprocedurein"
,
false
,
parseNameAndArgTypes
(
pro_name_or_oid
,
"regprocedurein"
,
"opaque"
,
&
names
,
&
nargs
,
argtypes
);
clist
=
FuncnameGetCandidates
(
names
,
nargs
);
...
...
@@ -326,12 +326,16 @@ regprocedureout(PG_FUNCTION_ARGS)
quote_qualified_identifier
(
nspname
,
proname
));
for
(
i
=
0
;
i
<
nargs
;
i
++
)
{
appendStringInfo
(
&
buf
,
"%s%s"
,
(
i
>
0
)
?
","
:
""
,
format_type_be
(
procform
->
proargtypes
[
i
]));
}
Oid
thisargtype
=
procform
->
proargtypes
[
i
];
appendStringInfo
(
&
buf
,
")"
);
if
(
i
>
0
)
appendStringInfoChar
(
&
buf
,
','
);
if
(
OidIsValid
(
thisargtype
))
appendStringInfo
(
&
buf
,
"%s"
,
format_type_be
(
thisargtype
));
else
appendStringInfo
(
&
buf
,
"opaque"
);
}
appendStringInfoChar
(
&
buf
,
')'
);
result
=
buf
.
data
;
...
...
@@ -567,7 +571,7 @@ regoperatorin(PG_FUNCTION_ARGS)
* datatype cannot be used for any system column that needs to receive
* data during bootstrap.
*/
parseNameAndArgTypes
(
opr_name_or_oid
,
"regoperatorin"
,
true
,
parseNameAndArgTypes
(
opr_name_or_oid
,
"regoperatorin"
,
"none"
,
&
names
,
&
nargs
,
argtypes
);
if
(
nargs
==
1
)
elog
(
ERROR
,
"regoperatorin: use NONE to denote the missing argument of a unary operator"
);
...
...
@@ -1000,10 +1004,12 @@ stringToQualifiedNameList(const char *string, const char *caller)
* the argtypes array should be of size FUNC_MAX_ARGS). The function or
* operator name is returned to *names as a List of Strings.
*
* NONE is accepted as a placeholder for OID 0 if allow_none is true.
* If type0_spelling is not NULL, it is a name to be accepted as a
* placeholder for OID 0.
*/
static
void
parseNameAndArgTypes
(
const
char
*
string
,
const
char
*
caller
,
bool
allow_none
,
parseNameAndArgTypes
(
const
char
*
string
,
const
char
*
caller
,
const
char
*
type0_spelling
,
List
**
names
,
int
*
nargs
,
Oid
*
argtypes
)
{
char
*
rawname
;
...
...
@@ -1109,9 +1115,9 @@ parseNameAndArgTypes(const char *string, const char *caller, bool allow_none,
*
ptr2
=
'\0'
;
}
if
(
allow_none
&&
strcasecmp
(
typename
,
"none"
)
==
0
)
if
(
type0_spelling
&&
strcasecmp
(
typename
,
type0_spelling
)
==
0
)
{
/*
Report NONE as OID 0
*/
/*
Special case for OPAQUE or NONE
*/
typeid
=
InvalidOid
;
typmod
=
-
1
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment