mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
Fix for \df.
This commit is contained in:
parent
b68d690dd3
commit
0fc8bce760
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/regproc.c,v 1.26 1998/09/01 04:32:47 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/utils/adt/regproc.c,v 1.27 1998/09/18 04:43:18 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -211,7 +211,7 @@ regprocout(RegProcedure proid)
|
|||||||
* int8typeout - converts int8 type oids to "typname" list
|
* int8typeout - converts int8 type oids to "typname" list
|
||||||
*/
|
*/
|
||||||
text *
|
text *
|
||||||
oid8types(Oid **oidArray)
|
oid8types(Oid (*oidArray)[])
|
||||||
{
|
{
|
||||||
HeapTuple typetup;
|
HeapTuple typetup;
|
||||||
text *result;
|
text *result;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: builtins.h,v 1.53 1998/09/01 06:22:46 momjian Exp $
|
* $Id: builtins.h,v 1.54 1998/09/18 04:43:20 momjian Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* This should normally only be included by fmgr.h.
|
* This should normally only be included by fmgr.h.
|
||||||
@ -358,7 +358,7 @@ extern bool texticregexne(struct varlena * s, struct varlena * p);
|
|||||||
/* regproc.c */
|
/* regproc.c */
|
||||||
extern int32 regprocin(char *pro_name_and_oid);
|
extern int32 regprocin(char *pro_name_and_oid);
|
||||||
extern char *regprocout(RegProcedure proid);
|
extern char *regprocout(RegProcedure proid);
|
||||||
extern text *oid8types(Oid **oidArray);
|
extern text *oid8types(Oid (*oidArray)[]);
|
||||||
extern Oid regproctooid(RegProcedure rp);
|
extern Oid regproctooid(RegProcedure rp);
|
||||||
|
|
||||||
/* define macro to replace mixed-case function call - tgl 97/04/27 */
|
/* define macro to replace mixed-case function call - tgl 97/04/27 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user