]> granicus.if.org Git - postgresql/commit
Rename the newly-added commands for discarding session state.
authorNeil Conway <neilc@samurai.com>
Thu, 26 Apr 2007 16:13:15 +0000 (16:13 +0000)
committerNeil Conway <neilc@samurai.com>
Thu, 26 Apr 2007 16:13:15 +0000 (16:13 +0000)
commit16efdb5ec7f28bed9541fc773330e3e2ebe2ed9a
tree6ec0d0c7b08584ef53bf340e4d71a156e9655eba
parent5ea27a4b2812d148f2516d130aee9dbaba45cedc
Rename the newly-added commands for discarding session state.
RESET SESSION, RESET PLANS, and RESET TEMP are now DISCARD ALL,
DISCARD PLANS, and DISCARD TEMP, respectively. This is to avoid
confusion with the pre-existing RESET variants: the DISCARD
commands are not actually similar to RESET. Patch from Marko
Kreen, with some minor editorialization.
19 files changed:
doc/src/sgml/ref/allfiles.sgml
doc/src/sgml/ref/discard.sgml [new file with mode: 0644]
doc/src/sgml/ref/reset.sgml
doc/src/sgml/reference.sgml
src/backend/commands/Makefile
src/backend/commands/discard.c [new file with mode: 0644]
src/backend/nodes/copyfuncs.c
src/backend/nodes/equalfuncs.c
src/backend/parser/gram.y
src/backend/parser/keywords.c
src/backend/tcop/utility.c
src/backend/utils/misc/guc.c
src/backend/utils/mmgr/portalmem.c
src/bin/psql/tab-complete.c
src/include/commands/discard.h [new file with mode: 0644]
src/include/nodes/nodes.h
src/include/nodes/parsenodes.h
src/test/regress/expected/guc.out
src/test/regress/sql/guc.sql