diff options
Diffstat (limited to 'src/pl/tcl/pltcl.c')
-rw-r--r-- | src/pl/tcl/pltcl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c index 4185fb12210..185d5bed99f 100644 --- a/src/pl/tcl/pltcl.c +++ b/src/pl/tcl/pltcl.c @@ -615,7 +615,7 @@ call_pltcl_start_proc(Oid prolang, bool pltrusted) error_context_stack = &errcallback; /* Parse possibly-qualified identifier and look up the function */ - namelist = stringToQualifiedNameList(start_proc); + namelist = stringToQualifiedNameList(start_proc, NULL); procOid = LookupFuncName(namelist, 0, NULL, false); /* Current user must have permission to call function */ @@ -2603,7 +2603,8 @@ pltcl_SPI_prepare(ClientData cdata, Tcl_Interp *interp, typIOParam; int32 typmod; - parseTypeString(Tcl_GetString(argsObj[i]), &typId, &typmod, false); + (void) parseTypeString(Tcl_GetString(argsObj[i]), + &typId, &typmod, NULL); getTypeInputInfo(typId, &typInput, &typIOParam); |