1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

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

This commit is contained in:
Joe Conway
2015-07-02 09:46:34 -07:00
parent bcac470d5b
commit cf2b5f9b33
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) (2 rows)
CREATE TABLE test_qual_pushdown ( CREATE TABLE test_qual_pushdown (
abc text abc text
); );
INSERT INTO test_qual_pushdown VALUES ('abc'),('def'); INSERT INTO test_qual_pushdown VALUES ('abc'),('def');
SELECT * FROM y2 JOIN test_qual_pushdown ON (b = abc) WHERE f_leak(abc); 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'); EXPLAIN (COSTS OFF) SELECT * FROM y2 WHERE f_leak('abc');
CREATE TABLE test_qual_pushdown ( CREATE TABLE test_qual_pushdown (
abc text abc text
); );
INSERT INTO test_qual_pushdown VALUES ('abc'),('def'); INSERT INTO test_qual_pushdown VALUES ('abc'),('def');