mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
pgindent run for 8.3.
This commit is contained in:
contrib
cube
dblink
dict_int
dict_xsyn
hstore
intarray
isn
pageinspect
pg_buffercache
pg_standby
pg_trgm
pgbench
pgcrypto
pgstattuple
tablefunc
test_parser
tsearch2
uuid-ossp
src
backend
access
common
gin
gist
hash
heap
index
nbtree
transam
bootstrap
catalog
aclchk.cdependency.cheap.cindex.cnamespace.cpg_aggregate.cpg_constraint.cpg_conversion.cpg_enum.cpg_operator.cpg_proc.cpg_shdepend.cpg_type.c
commands
analyze.ccluster.ccomment.ccopy.cdbcommands.cdiscard.cexplain.cfunctioncmds.cindexcmds.copclasscmds.coperatorcmds.cportalcmds.cprepare.cschemacmds.csequence.ctablecmds.ctablespace.ctsearchcmds.ctypecmds.cvacuum.cvacuumlazy.cvariable.cview.c
executor
execAmi.cexecCurrent.cexecMain.cexecQual.cexecScan.cexecUtils.cfunctions.cnodeAgg.cnodeBitmapHeapscan.cnodeBitmapIndexscan.cnodeHash.cnodeHashjoin.cnodeIndexscan.cnodeLimit.cnodeMaterial.cnodeMergejoin.cnodeResult.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_oper.cparse_target.cparse_type.cparse_utilcmd.cparser.c
port
postmaster
regex
rewrite
snowball
storage
buffer
file
ipc
large_object
lmgr
page
smgr
tcop
tsearch
dict.cdict_ispell.cdict_simple.cdict_synonym.cdict_thesaurus.cspell.cto_tsany.cts_locale.cts_parse.cts_utils.cwparser.cwparser_def.c
utils
adt
arrayutils.cbool.ccash.cdate.cdatetime.cdbsize.cenum.cfloat.cformat_type.cformatting.cgeo_ops.clike.clike_match.clockfuncs.cnetwork.cnumeric.coracle_compat.cpg_lzcompress.cpgstatfuncs.cregexp.cregproc.cri_triggers.cruleutils.cselfuncs.ctimestamp.ctsginidx.ctsquery.ctsquery_cleanup.ctsquery_gist.ctsquery_rewrite.ctsquery_util.ctsrank.ctsvector.ctsvector_parser.ctxid.cuuid.cvarbit.cvarchar.cvarlena.cxml.c
cache
error
fmgr
hash
init
mb
conversion_procs
euc_jis_2004_and_shift_jis_2004
utf8_and_big5
utf8_and_cyrillic
utf8_and_euc_cn
utf8_and_euc_jis_2004
utf8_and_euc_jp
utf8_and_euc_kr
utf8_and_euc_tw
utf8_and_gb18030
utf8_and_iso8859
utf8_and_johab
utf8_and_shift_jis_2004
utf8_and_win
misc
mmgr
resowner
sort
time
bin
initdb
pg_ctl
pg_dump
pg_resetxlog
psql
scripts
include
access
genam.hgin.hhash.hheapam.hhtup.hnbtree.hrelscan.hrewriteheap.hslru.htransam.htupmacs.htuptoaster.hxact.hxlog.h
bootstrap
catalog
dependency.hindexing.hnamespace.hpg_am.hpg_amop.hpg_amproc.hpg_autovacuum.hpg_cast.hpg_class.hpg_database.hpg_enum.hpg_opclass.hpg_operator.hpg_proc.hpg_trigger.hpg_ts_config.hpg_ts_config_map.hpg_ts_dict.hpg_ts_parser.hpg_ts_template.hpg_type.h
commands
defrem.hdiscard.hexplain.hportalcmds.hprepare.hschemacmds.htablecmds.htrigger.htypecmds.hvacuum.hvariable.h
executor
fmgr.hlibpq
mb
miscadmin.hnodes
optimizer
parser
pgstat.hport.hport
postgres.hpostmaster
rewrite
snowball
storage
buf_internals.hbufmgr.hbufpage.hitemid.hlarge_object.hlock.hpmsignal.hproc.hprocarray.hsinvaladt.hsmgr.h
tcop
tsearch
utils
interfaces
ecpg
compatlib
ecpglib
include
pgtypeslib
preproc
test
libpq
pl
port
test
timezone
tools
fsync
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/include/executor/executor.h,v 1.142 2007/08/15 21:39:50 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/include/executor/executor.h,v 1.143 2007/11/15 21:14:43 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -73,10 +73,10 @@ extern bool ExecMayReturnRawTuples(PlanState *node);
|
||||
/*
|
||||
* prototypes from functions in execCurrent.c
|
||||
*/
|
||||
extern bool execCurrentOf(CurrentOfExpr *cexpr,
|
||||
ExprContext *econtext,
|
||||
Oid table_oid,
|
||||
ItemPointer current_tid);
|
||||
extern bool execCurrentOf(CurrentOfExpr * cexpr,
|
||||
ExprContext *econtext,
|
||||
Oid table_oid,
|
||||
ItemPointer current_tid);
|
||||
|
||||
/*
|
||||
* prototypes from functions in execGrouping.c
|
||||
@ -109,9 +109,9 @@ extern TupleHashEntry LookupTupleHashEntry(TupleHashTable hashtable,
|
||||
TupleTableSlot *slot,
|
||||
bool *isnew);
|
||||
extern TupleHashEntry FindTupleHashEntry(TupleHashTable hashtable,
|
||||
TupleTableSlot *slot,
|
||||
FmgrInfo *eqfunctions,
|
||||
FmgrInfo *hashfunctions);
|
||||
TupleTableSlot *slot,
|
||||
FmgrInfo *eqfunctions,
|
||||
FmgrInfo *hashfunctions);
|
||||
|
||||
/*
|
||||
* prototypes from functions in execJunk.c
|
||||
@ -122,9 +122,9 @@ extern JunkFilter *ExecInitJunkFilterConversion(List *targetList,
|
||||
TupleDesc cleanTupType,
|
||||
TupleTableSlot *slot);
|
||||
extern AttrNumber ExecFindJunkAttribute(JunkFilter *junkfilter,
|
||||
const char *attrName);
|
||||
const char *attrName);
|
||||
extern Datum ExecGetJunkAttribute(TupleTableSlot *slot, AttrNumber attno,
|
||||
bool *isNull);
|
||||
bool *isNull);
|
||||
extern TupleTableSlot *ExecFilterJunk(JunkFilter *junkfilter,
|
||||
TupleTableSlot *slot);
|
||||
extern HeapTuple ExecRemoveJunk(JunkFilter *junkfilter, TupleTableSlot *slot);
|
||||
@ -271,7 +271,7 @@ extern ProjectionInfo *ExecBuildProjectionInfo(List *targetList,
|
||||
TupleTableSlot *slot,
|
||||
TupleDesc inputDesc);
|
||||
extern void ExecAssignProjectionInfo(PlanState *planstate,
|
||||
TupleDesc inputDesc);
|
||||
TupleDesc inputDesc);
|
||||
extern void ExecFreeExprContext(PlanState *planstate);
|
||||
extern TupleDesc ExecGetScanType(ScanState *scanstate);
|
||||
extern void ExecAssignScanType(ScanState *scanstate, TupleDesc tupDesc);
|
||||
|
Reference in New Issue
Block a user