mirror of
https://github.com/postgres/postgres.git
synced 2025-06-02 00:01:40 -04:00
Fix typo in test comment
s/currect/correct/, accidentally introduced in 608b167f9f9.
This commit is contained in:
parent
91b0e85aa0
commit
1f9e3a9be5
@ -1905,7 +1905,7 @@ select * from (with y as (select * from x) select * from y) ss;
|
|||||||
Output: int4_tbl.f1
|
Output: int4_tbl.f1
|
||||||
(5 rows)
|
(5 rows)
|
||||||
|
|
||||||
-- Ensure that we inline the currect CTE when there are
|
-- Ensure that we inline the correct CTE when there are
|
||||||
-- multiple CTEs with the same name
|
-- multiple CTEs with the same name
|
||||||
explain (verbose, costs off)
|
explain (verbose, costs off)
|
||||||
with x as (select 1 as y)
|
with x as (select 1 as y)
|
||||||
|
@ -958,7 +958,7 @@ explain (verbose, costs off)
|
|||||||
with x as materialized (select * from int4_tbl)
|
with x as materialized (select * from int4_tbl)
|
||||||
select * from (with y as (select * from x) select * from y) ss;
|
select * from (with y as (select * from x) select * from y) ss;
|
||||||
|
|
||||||
-- Ensure that we inline the currect CTE when there are
|
-- Ensure that we inline the correct CTE when there are
|
||||||
-- multiple CTEs with the same name
|
-- multiple CTEs with the same name
|
||||||
explain (verbose, costs off)
|
explain (verbose, costs off)
|
||||||
with x as (select 1 as y)
|
with x as (select 1 as y)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user