Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1f9e3a9

Browse files
Fix typo in test comment
s/currect/correct/, accidentally introduced in 608b167.
1 parent 91b0e85 commit 1f9e3a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/regress/expected/subselect.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1905,7 +1905,7 @@ select * from (with y as (select * from x) select * from y) ss;
19051905
Output: int4_tbl.f1
19061906
(5 rows)
19071907

1908-
-- Ensure that we inline the currect CTE when there are
1908+
-- Ensure that we inline the correct CTE when there are
19091909
-- multiple CTEs with the same name
19101910
explain (verbose, costs off)
19111911
with x as (select 1 as y)

src/test/regress/sql/subselect.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ explain (verbose, costs off)
958958
with x as materialized (select * from int4_tbl)
959959
select * from (with y as (select * from x) select * from y) ss;
960960

961-
-- Ensure that we inline the currect CTE when there are
961+
-- Ensure that we inline the correct CTE when there are
962962
-- multiple CTEs with the same name
963963
explain (verbose, costs off)
964964
with x as (select 1 as y)

0 commit comments

Comments
 (0)