diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/expected/subselect.out | 2 | ||||
-rw-r--r-- | src/test/regress/sql/subselect.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/subselect.out b/src/test/regress/expected/subselect.out index 22af8fafa17..a3a4d03d104 100644 --- a/src/test/regress/expected/subselect.out +++ b/src/test/regress/expected/subselect.out @@ -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) diff --git a/src/test/regress/sql/subselect.sql b/src/test/regress/sql/subselect.sql index 40276708c99..bd2e39efd48 100644 --- a/src/test/regress/sql/subselect.sql +++ b/src/test/regress/sql/subselect.sql @@ -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) |