diff options
author | Daniel Gustafsson | 2023-09-23 07:56:38 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2023-09-23 07:56:38 +0000 |
commit | 1f9e3a9be539f912babd3ad58d01a4ce6aa0b85b (patch) | |
tree | 3b2f4250f4c64d656c5d04a32f852af44f5d704b /src | |
parent | 91b0e85aa0ade896129fab540c3e02f62d7fe6fb (diff) |
Fix typo in test comment
s/currect/correct/, accidentally introduced in 608b167f9f9.
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) |