Skip to content

Commit

Permalink
set supported version to current.
Browse files Browse the repository at this point in the history
  • Loading branch information
hatyo committed Feb 6, 2025
1 parent 9c750e7 commit 67def2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions yaml-tests/src/test/resources/recursive-cte.yamsql
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ test_block:
select id, parent from t1 where parent = -1
union all
select b.id, b.parent from c1 as a, t1 as b where a.id = b.parent) select id from c1
- supported_version: !current_version
- maxRows: 1
- result: [{ID: 1}]
- result: [{ID: 10}]
Expand All @@ -92,6 +93,7 @@ test_block:
select b.id, b.parent from ancestorsOf250 as a, t1 as b where a.parent = b.id) select id, parent from ancestorsOf250
union all
select b.id, b.parent from allDescendants as a, t1 as b where a.id = b.parent) select id, parent from allDescendants
- supported_version: !current_version
- maxRows: 1
- result: [{250, 50}]
- result: [{50, 10}]
Expand Down

0 comments on commit 67def2e

Please sign in to comment.