Skip to content

Commit e89e91c

Browse files
committed
verify that test failures break CI
1 parent fb29f89 commit e89e91c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test-common/multicorn_testfilesystem.include

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ SELECT count(1) from testmulticorn where data ilike '% UPDATED!';
105105
BEGIN;
106106
UPDATE testmulticorn set data = data || ' UPDATED!';
107107
UPDATE testmulticorn set data = data || ' TWICE!';
108-
SELECT data from testmulticorn order by filename;
108+
SELECT data from testmulticorn order by filename;
109109
ROLLBACK;
110110

111111
-- No 'UPDATED! or 'TWICE!'
@@ -121,7 +121,7 @@ BEGIN;
121121
-- There should be one line with magenta, and 0 with cyan and the old
122122
-- filename
123123
UPDATE testmulticorn set color = 'magenta' where color = 'cyan';
124-
SELECT filename, data from testmulticorn where color = 'magenta' order by filename;
124+
SELECT filename, data from testmulticorn where color = 'magenta' order by filename;
125125
SELECT filename, data from testmulticorn where color = 'cyan' order by filename;
126126
SELECT filename, data from testmulticorn where filename = 'blue/big/rectangle.txt' order by filename;
127127
UPDATE testmulticorn set color = 'blue' where color = 'magenta';
@@ -155,7 +155,7 @@ BEGIN;
155155
select count(1) from testmulticorn where color = 'red';
156156
ROLLBACK;
157157
-- Should have 4 rows
158-
select count(1) from testmulticorn where color = 'red';
158+
select count(1) from testmulticorn where color = 're3d';
159159

160160

161161
-- Test various combinations of INSERT/UPDATE/DELETE

0 commit comments

Comments
 (0)