diff options
author | Michael Paquier <michael@paquier.xyz> | 2024-12-26 12:53:55 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2024-12-26 12:53:55 +0900 |
commit | a86cfcae7c58049c7a3a60118ef3f53afd92b3fa (patch) | |
tree | e22eadd28875a4928d02468d41ad9b483b9352a0 /src/backend/commands/functioncmds.c | |
parent | 07f902bd760791527511be9fc47440039bc86b5c (diff) | |
download | postgresql-a86cfcae7c58049c7a3a60118ef3f53afd92b3fa.tar.gz postgresql-a86cfcae7c58049c7a3a60118ef3f53afd92b3fa.zip |
Fix typo in comment of compute_return_type() in functioncmds.c
Author: Japin Li
Discussion: https://postgr.es/m/ME0P300MB0445D51BCFA8680F0B35FD6EB60C2@ME0P300MB0445.AUSP300.PROD.OUTLOOK.COM
Diffstat (limited to 'src/backend/commands/functioncmds.c')
-rw-r--r-- | src/backend/commands/functioncmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/functioncmds.c b/src/backend/commands/functioncmds.c index 82dd6598937..4bd030976da 100644 --- a/src/backend/commands/functioncmds.c +++ b/src/backend/commands/functioncmds.c @@ -74,7 +74,7 @@ /* * Examine the RETURNS clause of the CREATE FUNCTION statement - * and return information about it as *prorettype_p and *returnsSet. + * and return information about it as *prorettype_p and *returnsSet_p. * * This is more complex than the average typename lookup because we want to * allow a shell type to be used, or even created if the specified return type |