Fix typo in test comment
authorDaniel Gustafsson
Sat, 23 Sep 2023 07:56:38 +0000 (09:56 +0200)
committerDaniel Gustafsson
Sat, 23 Sep 2023 07:56:38 +0000 (09:56 +0200)
s/currect/correct/, accidentally introduced in 608b167f9f9.

src/test/regress/expected/subselect.out
src/test/regress/sql/subselect.sql

index 22af8fafa173b868273138dd6b63c1d2462b01ff..a3a4d03d1044bb1e3f6231614a04099ad5097ca0 100644 (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)
index 40276708c99268559f0518aa1080d42d2bb98e52..bd2e39efd48e3244577d87bd6bc2ba2c93fdee33 100644 (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)