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
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/commands/schemacmds.c,v 1.46 2007/06/23 22:12:50 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/commands/schemacmds.c,v 1.47 2007/11/15 21:14:33 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -111,17 +111,17 @@ CreateSchemaCommand(CreateSchemaStmt *stmt, const char *queryString)
|
||||
/*
|
||||
* Examine the list of commands embedded in the CREATE SCHEMA command, and
|
||||
* reorganize them into a sequentially executable order with no forward
|
||||
* references. Note that the result is still a list of raw parsetrees
|
||||
* --- we cannot, in general, run parse analysis on one statement until
|
||||
* we have actually executed the prior ones.
|
||||
* references. Note that the result is still a list of raw parsetrees ---
|
||||
* we cannot, in general, run parse analysis on one statement until we
|
||||
* have actually executed the prior ones.
|
||||
*/
|
||||
parsetree_list = transformCreateSchemaStmt(stmt);
|
||||
|
||||
/*
|
||||
* Execute each command contained in the CREATE SCHEMA. Since the
|
||||
* grammar allows only utility commands in CREATE SCHEMA, there is
|
||||
* no need to pass them through parse_analyze() or the rewriter;
|
||||
* we can just hand them straight to ProcessUtility.
|
||||
* Execute each command contained in the CREATE SCHEMA. Since the grammar
|
||||
* allows only utility commands in CREATE SCHEMA, there is no need to pass
|
||||
* them through parse_analyze() or the rewriter; we can just hand them
|
||||
* straight to ProcessUtility.
|
||||
*/
|
||||
foreach(parsetree_item, parsetree_list)
|
||||
{
|
||||
@ -131,7 +131,7 @@ CreateSchemaCommand(CreateSchemaStmt *stmt, const char *queryString)
|
||||
ProcessUtility(stmt,
|
||||
queryString,
|
||||
NULL,
|
||||
false, /* not top level */
|
||||
false, /* not top level */
|
||||
None_Receiver,
|
||||
NULL);
|
||||
/* make sure later steps can see the object created here */
|
||||
|
Reference in New Issue
Block a user