diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2022-03-23 11:13:33 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2022-03-23 11:13:33 -0400 |
commit | 7c51b7f7cc0860ab9a5784fce7a44142e4eb5463 (patch) | |
tree | e6101b15b1bfaa2221c9fb5789fd485eb048cc54 /src | |
parent | fc15396dc6821e15c883b8101be45ee6298a4d77 (diff) | |
download | postgresql-7c51b7f7cc0860ab9a5784fce7a44142e4eb5463.tar.gz postgresql-7c51b7f7cc0860ab9a5784fce7a44142e4eb5463.zip |
Force NO_LOCALE / UTF8 for test_oat_hooks tests
This will fix cases like fairywren that have been having issues.
Discussion: https://postgr.es/m/2630561.1647994022@sss.pgh.pa.us
Diffstat (limited to 'src')
-rw-r--r-- | src/test/modules/test_oat_hooks/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/modules/test_oat_hooks/Makefile b/src/test/modules/test_oat_hooks/Makefile index d1d874be79e..2b5d2687f8d 100644 --- a/src/test/modules/test_oat_hooks/Makefile +++ b/src/test/modules/test_oat_hooks/Makefile @@ -10,6 +10,9 @@ REGRESS = test_oat_hooks # disable installcheck for now NO_INSTALLCHECK = 1 +# and also for now force NO_LOCALE and UTF8 +ENCODING = UTF8 +NO_LOCALE = 1 ifdef USE_PGXS PG_CONFIG = pg_config |