Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 244f1c8

Browse files
committed
Fix whitespace
1 parent 511540d commit 244f1c8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contrib/sepgsql/expected/dml.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ ERROR: SELinux: security policy violation
257257
---
258258
-- partitioned table parent
259259
UPDATE t1p SET o = 9 WHERE o < 10; -- ok
260-
UPDATE t1p SET o = 99 WHERE o >= 10; -- ok
260+
UPDATE t1p SET o = 99 WHERE o >= 10; -- ok
261261
UPDATE t1p SET o = ascii(COALESCE(p,'upd'))%10 WHERE o < 10; -- ok
262262
UPDATE t1p SET o = ascii(COALESCE(q,'upd'))%100 WHERE o >= 10; -- failed
263263
ERROR: SELinux: security policy violation
@@ -266,7 +266,7 @@ UPDATE t1p_ones SET o = 9; -- ok
266266
UPDATE t1p_ones SET o = ascii(COALESCE(p,'upd'))%10; -- ok
267267
UPDATE t1p_ones SET o = ascii(COALESCE(q,'upd'))%10; -- failed
268268
ERROR: SELinux: security policy violation
269-
UPDATE t1p_tens SET o = 99; -- ok
269+
UPDATE t1p_tens SET o = 99; -- ok
270270
UPDATE t1p_tens SET o = ascii(COALESCE(p,'upd'))%100; -- ok
271271
UPDATE t1p_tens SET o = ascii(COALESCE(q,'upd'))%100; -- failed
272272
ERROR: SELinux: security policy violation

contrib/sepgsql/sql/dml.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,14 @@ UPDATE t5 SET e = g || '_upd'; -- failed
158158
---
159159
-- partitioned table parent
160160
UPDATE t1p SET o = 9 WHERE o < 10; -- ok
161-
UPDATE t1p SET o = 99 WHERE o >= 10; -- ok
161+
UPDATE t1p SET o = 99 WHERE o >= 10; -- ok
162162
UPDATE t1p SET o = ascii(COALESCE(p,'upd'))%10 WHERE o < 10; -- ok
163163
UPDATE t1p SET o = ascii(COALESCE(q,'upd'))%100 WHERE o >= 10; -- failed
164164
-- partitioned table children
165165
UPDATE t1p_ones SET o = 9; -- ok
166166
UPDATE t1p_ones SET o = ascii(COALESCE(p,'upd'))%10; -- ok
167167
UPDATE t1p_ones SET o = ascii(COALESCE(q,'upd'))%10; -- failed
168-
UPDATE t1p_tens SET o = 99; -- ok
168+
UPDATE t1p_tens SET o = 99; -- ok
169169
UPDATE t1p_tens SET o = ascii(COALESCE(p,'upd'))%100; -- ok
170170
UPDATE t1p_tens SET o = ascii(COALESCE(q,'upd'))%100; -- failed
171171
---

0 commit comments

Comments
 (0)