mirror of
https://github.com/postgres/postgres.git
synced 2026-03-10 02:01:23 -04:00
Whitespace fix - replace tab with spaces in CREATE TABLE command.
This commit is contained in:
parent
bcac470d5b
commit
cf2b5f9b33
2 changed files with 2 additions and 2 deletions
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue