Fix typo in test comment

s/currect/correct/, accidentally introduced in 608b167f9f.
This commit is contained in:
Daniel Gustafsson 2023-09-23 09:56:38 +02:00
parent 91b0e85aa0
commit 1f9e3a9be5
2 changed files with 2 additions and 2 deletions

View File

@ -1905,7 +1905,7 @@ select * from (with y as (select * from x) select * from y) ss;
Output: int4_tbl.f1
(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
explain (verbose, costs off)
with x as (select 1 as y)

View File

@ -958,7 +958,7 @@ explain (verbose, costs off)
with x as materialized (select * from int4_tbl)
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
explain (verbose, costs off)
with x as (select 1 as y)