File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ SELECT count(1) from testmulticorn where data ilike '% UPDATED!';
105105BEGIN;
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;
109109ROLLBACK;
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';
156156ROLLBACK;
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
You can’t perform that action at this time.
0 commit comments