8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a5d7b7 commit b897398Copy full SHA for b897398
contrib/mmts/tests2/support/docker-regress.sh
@@ -2,13 +2,24 @@
2
3
cd /pg/src/src/test/regress
4
5
+psql -U postgres regression <<-SQL
6
+ ALTER DATABASE "postgres" SET lc_messages TO 'C';
7
+ ALTER DATABASE "postgres" SET lc_monetary TO 'C';
8
+ ALTER DATABASE "postgres" SET lc_numeric TO 'C';
9
+ ALTER DATABASE "postgres" SET lc_time TO 'C';
10
+ ALTER DATABASE "postgres" SET timezone_abbreviations TO 'Default';
11
+SQL
12
+
13
./pg_regress --use-existing \
14
--schedule=parallel_schedule \
15
--host=node1 \
16
--user=postgres
17
18
STATUS=$?
19
-# cat regression.diffs
20
+if [ -f "regression.diffs" ]
21
+then
22
+ cat regression.diffs
23
+fi
24
25
exit $STATUS
0 commit comments