1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-21 00:42:43 +03:00

pgindent run before 6.3 release, with Thomas' requested changes.

This commit is contained in:
Bruce Momjian
1998-02-26 04:46:47 +00:00
parent 757bf69a2e
commit a32450a585
430 changed files with 12390 additions and 10292 deletions

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: makefuncs.h,v 1.10 1998/02/21 16:58:45 momjian Exp $
* $Id: makefuncs.h,v 1.11 1998/02/26 04:41:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,13 +16,15 @@
#include <nodes/primnodes.h>
#include <utils/fcache.h>
extern Oper * makeOper(Oid opno,
extern Oper *
makeOper(Oid opno,
Oid opid,
Oid opresulttype,
int opsize,
FunctionCachePtr op_fcache);
extern Var * makeVar(Index varno,
extern Var *
makeVar(Index varno,
AttrNumber varattno,
Oid vartype,
int16 vartypmod,
@@ -30,7 +32,8 @@ extern Var * makeVar(Index varno,
Index varnoold,
AttrNumber varoattno);
extern Resdom * makeResdom(AttrNumber resno,
extern Resdom *
makeResdom(AttrNumber resno,
Oid restype,
int16 restypmod,
char *resname,
@@ -38,7 +41,8 @@ extern Resdom * makeResdom(AttrNumber resno,
Oid reskeyop,
int resjunk);
extern Const * makeConst(Oid consttype,
extern Const *
makeConst(Oid consttype,
int constlen,
Datum constvalue,
bool constisnull,