mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
pgindent run before 6.3 release, with Thomas' requested changes.
This commit is contained in:
contrib
array
datetime
int8
ip_and_mac
miscutil
pginterface
sequence
soundex
spi
string
userlock
src
backend
access
common
hash
heap
index
nbtree
rtree
transam
bootstrap
catalog
commands
async.ccluster.ccommand.ccopy.ccreatinh.cdbcommands.cdefine.cexplain.cproclang.crecipe.ctrigger.cuser.cvacuum.cvariable.cview.c
executor
execAmi.cexecMain.cexecProcnode.cexecQual.cexecTuples.cexecUtils.cnodeAgg.cnodeAppend.cnodeGroup.cnodeHash.cnodeHashjoin.cnodeIndexscan.cnodeMaterial.cnodeMergejoin.cnodeNestloop.cnodeResult.cnodeSort.cnodeSubplan.cnodeTee.cnodeUnique.cspi.c
lib
libpq
auth.cbe-dumpdata.cbe-pqexec.ccrypt.chba.cpassword.cportal.cportalbuf.cpqcomm.cpqcomprim.cpqpacket.c
main
nodes
optimizer
geqo
path
allpaths.cclausesel.chashutils.cindxpath.cjoinrels.cjoinutils.cmergeutils.corindxpath.cpredmig.cprune.cxfunc.c
plan
prep
util
parser
analyze.cparse.hparse_agg.cparse_clause.cparse_expr.cparse_func.cparse_node.cparse_oper.cparse_relation.cparse_target.cparse_type.cparser.cscansup.c
port
postmaster
regex
rewrite
storage
tcop
tioga
utils
bin
data
charset.confcharset.conf.origkoi-alt.tabkoi-alt.tab.origkoi-iso.tabkoi-iso.tab.origkoi-koi.tabkoi-koi.tab.origkoi-mac.tabkoi-mac.tab.origkoi-win.tabkoi-win.tab.orig
include
access
genam.hgist.hgistscan.hgiststrat.hhash.hheapam.hhio.hhtup.hiqual.histrat.hitup.hnbtree.hrtree.hrtstrat.hskey.hstrat.htransam.htupdesc.htupmacs.hxact.h
bootstrap
c.hcatalog
heap.hindex.hindexing.hpg_aggregate.hpg_amop.hpg_attribute.hpg_class.hpg_description.hpg_operator.hpg_proc.hpg_shadow.hpg_type.h
commands
executor
lib
libpq
miscadmin.hnodes
optimizer
clauseinfo.hclauses.hcost.hordering.hpathnode.hpaths.hplancat.hplanmain.hprep.hsubselect.htlist.hxfunc.h
parser
gramparse.hparse_agg.hparse_clause.hparse_expr.hparse_func.hparse_node.hparse_oper.hparse_relation.hparse_target.hparse_type.hparser.h
port
postgres.hrewrite
rusagestub.hstorage
buf_internals.hbufmgr.hbufpage.hipc.hlmgr.hlock.hmultilev.hproc.hs_lock.hshmem.hsinval.hsinvaladt.hsmgr.h
tcop
utils
interfaces
ecpg
include
lib
preproc
test
libpgtcl
libpq
python
pl
tcl
test
tutorial
utils
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.28 1998/02/02 00:03:54 scrappy Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.29 1998/02/26 04:37:07 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -220,7 +220,7 @@ float4in(char *num)
|
||||
* float4out - converts a float4 number to a string
|
||||
* using a standard output format
|
||||
*/
|
||||
char *
|
||||
char *
|
||||
float4out(float32 num)
|
||||
{
|
||||
char *ascii = (char *) palloc(MAXFLOATWIDTH + 1);
|
||||
@ -262,7 +262,7 @@ float8in(char *num)
|
||||
* float8out - converts float8 number to a string
|
||||
* using a standard output format
|
||||
*/
|
||||
char *
|
||||
char *
|
||||
float8out(float64 num)
|
||||
{
|
||||
char *ascii = (char *) palloc(MAXDOUBLEWIDTH + 1);
|
||||
|
Reference in New Issue
Block a user