Thread: pgsql/ ontrib/array/array_iterator.c ontrib/in ...
pgsql/ ontrib/array/array_iterator.c ontrib/in ...
From
momjian@postgresql.org (Bruce Momjian - CVS)
Date:
CVSROOT: /cvsroot Module name: pgsql Changes by: momjian@postgresql.org 02/03/06 01:11:00 Modified files: contrib/array : array_iterator.c contrib/intagg : int_aggregate.c contrib/intarray: _int.c contrib/miscutil: misc_utils.c contrib/noupdate: noup.c contrib/pgcrypto: px.c contrib/pgstattuple: pgstattuple.c contrib/rserv : rserv.c contrib/spi : refint.c contrib/tsearch: query.c txtidx.c contrib/xml : pgxml.c pgxml_dom.c src/backend/access/gist: gist.c src/backend/access/nbtree: nbtinsert.c nbtpage.c src/backend/access/transam: xact.c xlog.c src/backend/catalog: aclchk.c heap.c pg_proc.c src/backend/commands: analyze.c async.c command.c copy.c creatinh.c dbcommands.c define.c explain.c indexcmds.c remove.c sequence.c trigger.c user.c vacuum.c vacuumlazy.c variable.c src/backend/commands/_deadcode: recipe.c src/backend/executor: execMain.c nodeMergejoin.c src/backend/libpq: be-fsstubs.c pqcomm.c src/backend/nodes: equalfuncs.c outfuncs.c src/backend/optimizer/path: clausesel.c src/backend/parser: analyze.c gram.y parse_node.c parse_relation.c scan.l src/backend/port/beos: support.c src/backend/port/dynloader: beos.c bsdi.c linux.c ultrix4.c src/backend/postmaster: pgstat.c src/backend/storage/buffer: bufmgr.c src/backend/storage/file: fd.c src/backend/storage/ipc: ipc.c shmem.c shmqueue.c src/backend/storage/lmgr: lock.c src/backend/storage/page: bufpage.c src/backend/storage/smgr: smgr.c src/backend/tcop: postgres.c pquery.c src/backend/tioga: tgRecipe.c src/backend/utils/adt: formatting.c nabstime.c pg_locale.c ri_triggers.c ruleutils.c timestamp.c varbit.c src/backend/utils/cache: catcache.c relcache.c src/backend/utils/error: elog.c src/backend/utils/init: postinit.c src/backend/utils/mb: conv.c src/backend/utils/misc: guc.c postgresql.conf.sample src/backend/utils/mmgr: aset.c portalmem.c src/bin/psql : common.c large_obj.c src/include/utils: elog.h src/interfaces/ecpg/include: ecpgerrno.h src/interfaces/ecpg/lib: connect.c src/interfaces/ecpg/preproc: descriptor.c pgc.l preproc.y type.h src/interfaces/ecpg/test: test_notice.pgc src/interfaces/libpq: fe-exec.c fe-misc.c src/interfaces/odbc: connection.c src/pl/plpgsql/src: pl_comp.c pl_exec.c src/pl/plpython: plpython.c plpython.h src/pl/tcl : pltcl.c src/test/regress: regress.c src/test/regress/expected: alter_table.out create_misc.out create_table.out errors.out foreign_key.out inherit.out privileges.out triggers.out Log message: Change made to elog: o Change all current CVS messages of NOTICE to WARNING. We were going to do this just before 7.3 beta but it has to be done now, as you will see below. o Change current INFO messages that should be controlled by client_min_messages to NOTICE. o Force remaining INFO messages, like from EXPLAIN, VACUUM VERBOSE, etc. to always go to the client. o Remove INFO from the client_min_messages options and add NOTICE. Seems we do need three non-ERROR elog levels to handle the various behaviors we need for these messages. Regression passed.