Skip to content

Commit d143150

Browse files
committed
Fix thinko in psql test
The tests added by 14d755b added a test case for psql's \set ECHO errors. After the test, it then reset this to \set ECHO none, which is the default. But the regression tests are actually run under \set ECHO all (psql -a), so that would have been the correct way to restore the previous state. Otherwise, test cases added after that point would not have their input lines displayed. This was never the intention, so fix this now.
1 parent e0e567a commit d143150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/regress/sql/psql.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1315,4 +1315,4 @@ DROP TABLE oer_test;
13151315
-- ECHO errors
13161316
\set ECHO errors
13171317
SELECT * FROM notexists;
1318-
\set ECHO none
1318+
\set ECHO all

0 commit comments

Comments
 (0)