]> granicus.if.org Git - postgresql/commit
Run pg_upgrade and pg_resetxlog with restricted token on Windows
authorAndrew Dunstan <andrew@dunslane.net>
Mon, 30 Mar 2015 21:07:52 +0000 (17:07 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Mon, 30 Mar 2015 21:07:52 +0000 (17:07 -0400)
commitfa1e5afa8a26d467aec7c8b36a0b749b690f636c
tree59f26bc7d64d51973bce9d1e2b68ddaab20c112c
parented9cc2b5df59fdbc50cce37399e26b03ab2c1686
Run pg_upgrade and pg_resetxlog with restricted token on Windows

As with initdb these programs need to run with a restricted token, and
if they don't pg_upgrade will fail when run as a user with Adminstrator
privileges.

Backpatch to all live branches. On the development branch the code is
reorganized so that the restricted token code is now in a single
location. On the stable bramches a less invasive change is made by
simply copying the relevant code to pg_upgrade.c and pg_resetxlog.c.

Patches and bug report from Muhammad Asif Naeem, reviewed by Michael
Paquier, slightly edited by me.
contrib/pg_upgrade/pg_upgrade.c
src/bin/initdb/initdb.c
src/bin/pg_resetxlog/pg_resetxlog.c
src/common/Makefile
src/common/restricted_token.c [new file with mode: 0644]
src/include/common/restricted_token.h [new file with mode: 0644]
src/test/regress/pg_regress.c
src/tools/msvc/Mkvcbuild.pm