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

This commit is contained in:
Joe Conway 2015-07-02 09:45:53 -07:00
parent a2edb023d0
commit 1fd0d5ec03
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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');