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. Branch ------ REL9_3_STABLE Details ------- http://git.postgresql.org/pg/commitdiff/0904eb3e19842dd103adb6a8b3f65987b678a0e6 Modified Files -------------- contrib/pg_upgrade/pg_upgrade.c | 166 +++++++++++++++++++++++++++++++++++ src/bin/pg_resetxlog/pg_resetxlog.c | 165 ++++++++++++++++++++++++++++++++++ 2 files changed, 331 insertions(+) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
