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

Commit 1fd0d5e

Browse files
committed
Whitespace fix - replace tab with spaces in CREATE TABLE command.
1 parent a2edb02 commit 1fd0d5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/regress/expected/rowsecurity.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2122,7 +2122,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM y2 WHERE f_leak('abc');
21222122
(2 rows)
21232123

21242124
CREATE TABLE test_qual_pushdown (
2125-
abc text
2125+
abc text
21262126
);
21272127
INSERT INTO test_qual_pushdown VALUES ('abc'),('def');
21282128
SELECT * FROM y2 JOIN test_qual_pushdown ON (b = abc) WHERE f_leak(abc);

src/test/regress/sql/rowsecurity.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ SELECT * FROM y2 WHERE f_leak('abc');
802802
EXPLAIN (COSTS OFF) SELECT * FROM y2 WHERE f_leak('abc');
803803

804804
CREATE TABLE test_qual_pushdown (
805-
abc text
805+
abc text
806806
);
807807

808808
INSERT INTO test_qual_pushdown VALUES ('abc'),('def');

0 commit comments

Comments
 (0)