1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-24 00:23:06 +03:00

Fix omission of -X (--no-psqlrc) in some psql invocations.

As of commit d5563d7df, psql -c no longer implies -X, but not all of
our regression testing scripts had gotten that memo.

To ensure consistency of results across different developers, make
sure that *all* invocations of psql in all scripts in our tree
use -X, even where this is not what previously happened.

Michael Paquier and Tom Lane
This commit is contained in:
Tom Lane
2015-12-28 11:46:32 -05:00
parent 151c4ffe41
commit 870df2b3b7
9 changed files with 21 additions and 21 deletions

View File

@@ -47,4 +47,4 @@ echo "
from debug2
where scope = 'T' and func != 'main'
order by file, func;
" |psql debug
" |psql -X debug