Skip to content

Commit 4366ade

Browse files
committed
Update expected results for regression tests
1 parent d781b9d commit 4366ade

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

contrib/mmts/tests2/test_regression.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ class RecoveryTest(unittest.TestCase):
77
@classmethod
88
def setUpClass(self):
99
print('setUp')
10-
subprocess.check_call(['docker-compose','up',
11-
'--force-recreate',
12-
'--build',
13-
'-d'])
10+
# subprocess.check_call(['docker-compose','up',
11+
# '--force-recreate',
12+
# '--build',
13+
# '-d'])
1414

1515
@classmethod
1616
def tearDownClass(self):
1717
print('tearDown')
18-
subprocess.check_call(['docker-compose','down'])
18+
# subprocess.check_call(['docker-compose','down'])
1919

2020
def test_regression(self):
2121
# XXX: make smth clever here

src/test/regress/expected/opr_sanity.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ WHERE 'cstring'::regtype = ANY (p1.proargtypes)
339339
AND p1.oid != 'shell_in(cstring)'::regprocedure
340340
ORDER BY 1;
341341
oid | proname
342-
------+--------------
342+
------+-----------------------
343343
2293 | cstring_out
344344
2501 | cstring_send
345345
3445 | pg_precommit_prepared

src/test/regress/expected/rules.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1410,7 +1410,7 @@ pg_prepared_xacts| SELECT p.transaction,
14101410
p.prepared,
14111411
u.rolname AS owner,
14121412
d.datname AS database,
1413-
p.state3pc
1413+
p.state3pc
14141414
FROM ((pg_prepared_xact() p(transaction, gid, prepared, ownerid, dbid, state3pc)
14151415
LEFT JOIN pg_authid u ON ((p.ownerid = u.oid)))
14161416
LEFT JOIN pg_database d ON ((p.dbid = d.oid)));

0 commit comments

Comments
 (0)