diff options
Diffstat (limited to 'src/bin/pg_upgrade')
-rw-r--r-- | src/bin/pg_upgrade/TESTING | 2 | ||||
-rw-r--r-- | src/bin/pg_upgrade/controldata.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_upgrade/TESTING b/src/bin/pg_upgrade/TESTING index 6831f679f66..e69874b42d0 100644 --- a/src/bin/pg_upgrade/TESTING +++ b/src/bin/pg_upgrade/TESTING @@ -36,7 +36,7 @@ Here are the steps needed to create a regression database dump file: 1) Create and populate the regression database in the old cluster. This database can be created by running 'make installcheck' from - src/test/regression. + src/test/regress. 2) Use pg_dump to dump out the regression database. Use the new cluster's pg_dump on the old database to minimize whitespace diff --git a/src/bin/pg_upgrade/controldata.c b/src/bin/pg_upgrade/controldata.c index 6788f882a84..38236415bef 100644 --- a/src/bin/pg_upgrade/controldata.c +++ b/src/bin/pg_upgrade/controldata.c @@ -105,7 +105,7 @@ get_control_data(ClusterInfo *cluster, bool live_check) #ifndef WIN32 pg_putenv("LANG", NULL); #else - /* On Windows the default locale cannot be English, so force it */ + /* On Windows the default locale may not be English, so force it */ pg_putenv("LANG", "en"); #endif pg_putenv("LANGUAGE", NULL); |