Commit 1fd0d5ec authored by Joe Conway's avatar Joe Conway

Whitespace fix - replace tab with spaces in CREATE TABLE command.

parent a2edb023
......@@ -2122,7 +2122,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM y2 WHERE f_leak('abc');
(2 rows)
CREATE TABLE test_qual_pushdown (
abc text
abc text
);
INSERT INTO test_qual_pushdown VALUES ('abc'),('def');
SELECT * FROM y2 JOIN test_qual_pushdown ON (b = abc) WHERE f_leak(abc);
......
......@@ -802,7 +802,7 @@ SELECT * FROM y2 WHERE f_leak('abc');
EXPLAIN (COSTS OFF) SELECT * FROM y2 WHERE f_leak('abc');
CREATE TABLE test_qual_pushdown (
abc text
abc text
);
INSERT INTO test_qual_pushdown VALUES ('abc'),('def');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment