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:
@ -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');
|
||||
|
Reference in New Issue
Block a user