mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-11 19:20:40 +08:00
Remove "const" from convertTSFunction()'s return type.
There's no particular reason to mark it as such. The other convert* functions have no const either.
This commit is contained in:
parent
f712289ffa
commit
a3fd7afe30
@ -225,7 +225,7 @@ static char *format_function_signature(Archive *fout,
|
||||
static char *convertRegProcReference(Archive *fout,
|
||||
const char *proc);
|
||||
static char *convertOperatorReference(Archive *fout, const char *opr);
|
||||
static const char *convertTSFunction(Archive *fout, Oid funcOid);
|
||||
static char *convertTSFunction(Archive *fout, Oid funcOid);
|
||||
static Oid findLastBuiltinOid_V71(Archive *fout, const char *);
|
||||
static Oid findLastBuiltinOid_V70(Archive *fout);
|
||||
static void selectSourceSchema(Archive *fout, const char *schemaName);
|
||||
@ -11176,7 +11176,7 @@ convertOperatorReference(Archive *fout, const char *opr)
|
||||
* caller should ensure we are in the proper schema, because the results
|
||||
* are search path dependent!
|
||||
*/
|
||||
static const char *
|
||||
static char *
|
||||
convertTSFunction(Archive *fout, Oid funcOid)
|
||||
{
|
||||
char *result;
|
||||
|
Loading…
Reference in New Issue
Block a user