mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
pgindent run. Make it all clean.
This commit is contained in:
contrib
cube
earthdistance
findoidjoins
fulltextindex
lo
oid2name
pg_controldata
pg_dumplo
pg_logger
pg_resetxlog
pgcrypto
rserv
seg
soundex
spi
vacuumlo
src
backend
access
common
gist
hash
heap
index
nbtree
rtree
transam
catalog
aclchk.ccatalog.cheap.cindex.cindexing.cpg_aggregate.cpg_largeobject.cpg_operator.cpg_proc.cpg_type.c
commands
analyze.casync.ccluster.ccommand.ccomment.ccopy.ccreatinh.cdbcommands.cdefine.cexplain.cindexcmds.cproclang.cremove.crename.csequence.ctrigger.cuser.cvacuum.cvariable.cview.c
executor
execAmi.cexecJunk.cexecMain.cexecQual.cexecScan.cexecTuples.cexecUtils.cfunctions.cnodeAgg.cnodeGroup.cnodeHash.cnodeHashjoin.cnodeIndexscan.cnodeLimit.cnodeMaterial.cnodeMergejoin.cnodeNestloop.cnodeResult.cnodeSeqscan.cnodeSetOp.cnodeSubplan.cnodeSubqueryscan.cnodeTidscan.cspi.c
lib
libpq
main
nodes
optimizer
geqo
path
plan
prep
util
parser
analyze.ckeywords.cparse_clause.cparse_coerce.cparse_expr.cparse_func.cparse_node.cparse_oper.cparse_relation.cparse_target.cparse_type.cparser.c
port
postmaster
regex
rewrite
storage
buffer
file
ipc
large_object
lmgr
page
smgr
tcop
tioga
utils
adt
acl.carrayfuncs.cascii.cbool.ccash.cdate.cdatetime.cdatum.cfloat.cformat_type.cformatting.cgeo_ops.cinet_net_ntop.cint.cint8.clike.cmac.cmisc.cnabstime.cnetwork.cnot_in.cnumeric.cnumutils.coid.coracle_compat.cpg_locale.cpg_lzcompress.cquote.cregexp.cregproc.cri_triggers.cruleutils.cselfuncs.csets.ctid.ctimestamp.cvarbit.cvarchar.cvarlena.c
cache
error
fmgr
hash
init
mb
misc
mmgr
sort
bin
pg_dump
common.cpg_backup.hpg_backup_archiver.cpg_backup_archiver.hpg_backup_custom.cpg_backup_db.cpg_backup_db.hpg_backup_files.cpg_backup_null.cpg_backup_tar.cpg_backup_tar.hpg_dump.cpg_dump.hpg_restore.c
pg_id
pg_passwd
psql
include
access
gist.hhash.hheapam.hhtup.histrat.hitup.hnbtree.hprinttup.hrtree.hstrat.htransam.htupmacs.htuptoaster.hxact.hxlog.hxlogdefs.hxlogutils.h
c.hcatalog
catalog.hcatversion.hheap.hindex.hindexing.hpg_aggregate.hpg_amop.hpg_attribute.hpg_class.hpg_control.hpg_database.hpg_largeobject.hpg_operator.hpg_proc.hpg_rewrite.hpg_type.h
commands
executor
fmgr.hlib
libpq
mb
miscadmin.hnodes
optimizer
parser
port
postgres.hpostgres_ext.hregex
rewrite
storage
buf_internals.hbufmgr.hbufpage.hipc.hitemid.hitemptr.hlarge_object.hlmgr.hlock.hproc.hrelfilenode.hshmem.hsinvaladt.hsmgr.hspin.h
tcop
utils
interfaces
cli
ecpg
include
lib
preproc
libpgeasy
libpgtcl
libpq
odbc
bind.cbind.hcolumninfo.ccolumninfo.hconnection.cconnection.hconvert.cconvert.hdlg_specific.cdlg_specific.hdrvconn.cenviron.cenviron.hexecute.cgpps.cgpps.hinfo.ciodbc.hisql.hisqlext.hlobj.clobj.hmisc.cmisc.hmultibyte.cmultibyte.hoptions.cparse.cpgtypes.cpgtypes.hpsqlodbc.cpsqlodbc.hqresult.cqresult.hresource.hresults.csetup.csocket.csocket.hstatement.cstatement.htuple.ctuple.htuplelist.ctuplelist.h
perl5
python
pl
test
tools
entab
tutorial
utils
@ -10,7 +10,7 @@
|
||||
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1995, Regents of the University of California
|
||||
*
|
||||
* $Id: postgres.h,v 1.46 2001/02/10 02:31:28 tgl Exp $
|
||||
* $Id: postgres.h,v 1.47 2001/03/22 04:00:25 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -85,7 +85,7 @@ typedef struct varattrib
|
||||
|
||||
char va_data[1]; /* Plain stored attribute */
|
||||
} va_content;
|
||||
} varattrib;
|
||||
} varattrib;
|
||||
|
||||
#define VARATT_FLAG_EXTERNAL 0x80000000
|
||||
#define VARATT_FLAG_COMPRESSED 0x40000000
|
||||
@ -322,7 +322,7 @@ typedef Datum *DatumPtr;
|
||||
* Returns 64-bit integer value of a datum.
|
||||
*
|
||||
* Note: this macro hides the fact that int64 is currently a
|
||||
* pass-by-reference type. Someday it may be pass-by-value,
|
||||
* pass-by-reference type. Someday it may be pass-by-value,
|
||||
* at least on some platforms.
|
||||
*/
|
||||
|
||||
@ -342,7 +342,7 @@ extern Datum Int64GetDatum(int64 X);
|
||||
* Returns 4-byte floating point value of a datum.
|
||||
*
|
||||
* Note: this macro hides the fact that float4 is currently a
|
||||
* pass-by-reference type. Someday it may be pass-by-value.
|
||||
* pass-by-reference type. Someday it may be pass-by-value.
|
||||
*/
|
||||
|
||||
#define DatumGetFloat4(X) (* ((float4 *) DatumGetPointer(X)))
|
||||
@ -361,7 +361,7 @@ extern Datum Float4GetDatum(float4 X);
|
||||
* Returns 8-byte floating point value of a datum.
|
||||
*
|
||||
* Note: this macro hides the fact that float8 is currently a
|
||||
* pass-by-reference type. Someday it may be pass-by-value,
|
||||
* pass-by-reference type. Someday it may be pass-by-value,
|
||||
* at least on some platforms.
|
||||
*/
|
||||
|
||||
@ -457,7 +457,7 @@ extern Exception FailedAssertion;
|
||||
extern Exception BadArg;
|
||||
extern Exception BadState;
|
||||
|
||||
extern bool assert_enabled;
|
||||
extern bool assert_enabled;
|
||||
|
||||
/*
|
||||
* USE_ASSERT_CHECKING, if defined, turns on all the assertions.
|
||||
@ -538,7 +538,7 @@ extern bool assert_enabled;
|
||||
extern int ExceptionalCondition(char *conditionName,
|
||||
Exception *exceptionP, char *details,
|
||||
char *fileName, int lineNumber);
|
||||
extern char *vararg_format(const char *fmt, ...);
|
||||
extern char *vararg_format(const char *fmt,...);
|
||||
|
||||
#ifndef USE_ASSERT_CHECKING
|
||||
#define LogAssert(condition, printArgs)
|
||||
|
Reference in New Issue
Block a user