diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-13 15:14:50 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-13 16:07:36 +0300 |
commit | 5cbdc6f2bc811da3e6104da774a30b25a54a8708 (patch) | |
tree | 68f3ddb0d928332e5ea73853f40f4670f4babb65 /yql/essentials/tests/s-expressions/suites/EquiJoinCommon/JoinCommonOpt12.yqls | |
parent | 1402a032649d20ffb80a541f706afcd31cd897fa (diff) | |
download | ydb-5cbdc6f2bc811da3e6104da774a30b25a54a8708.tar.gz |
Intermediate changes
commit_hash:27af5f8a0a7836d78ffdc205213f07f79dd9f7ad
Diffstat (limited to 'yql/essentials/tests/s-expressions/suites/EquiJoinCommon/JoinCommonOpt12.yqls')
-rw-r--r-- | yql/essentials/tests/s-expressions/suites/EquiJoinCommon/JoinCommonOpt12.yqls | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/yql/essentials/tests/s-expressions/suites/EquiJoinCommon/JoinCommonOpt12.yqls b/yql/essentials/tests/s-expressions/suites/EquiJoinCommon/JoinCommonOpt12.yqls new file mode 100644 index 0000000000..4f530fd62f --- /dev/null +++ b/yql/essentials/tests/s-expressions/suites/EquiJoinCommon/JoinCommonOpt12.yqls @@ -0,0 +1,42 @@ +( +(let mr_source (DataSource 'yt 'plato)) +(let x (Read! world mr_source (Key '('table (String 'Input1Opt))) (Void) '())) +(let world (Left! x)) +(let list1 (Right! x)) + +(let x (Read! world mr_source (Key '('table (String 'Input2Opt))) (Void) '())) +(let world (Left! x)) +(let list2 (Right! x)) + +(let joinInner (EquiJoin '(list1 'a) '(list2 'b) '('Inner 'a 'b '('a 'key1) '('b 'key2) '()) '())) +(let joinLeft (EquiJoin '(list1 'a) '(list2 'b) '('Left 'a 'b '('a 'key1) '('b 'key2) '()) '())) +(let joinRight (EquiJoin '(list1 'a) '(list2 'b) '('Right 'a 'b '('a 'key1) '('b 'key2) '()) '())) +(let joinFull (EquiJoin '(list1 'a) '(list2 'b) '('Full 'a 'b '('a 'key1) '('b 'key2) '()) '())) +(let joinLeftOnly (EquiJoin '(list1 'a) '(list2 'b) '('LeftOnly 'a 'b '('a 'key1) '('b 'key2) '()) '())) +(let joinRightOnly (EquiJoin '(list1 'a) '(list2 'b) '('RightOnly 'a 'b '('a 'key1) '('b 'key2) '()) '())) +(let joinExclusion (EquiJoin '(list1 'a) '(list2 'b) '('Exclusion 'a 'b '('a 'key1) '('b 'key2) '()) '())) +(let joinLeftSemi (EquiJoin '(list1 'a) '(list2 'b) '('LeftSemi 'a 'b '('a 'key1) '('b 'key2) '()) '())) +(let joinRightSemi (EquiJoin '(list1 'a) '(list2 'b) '('RightSemi 'a 'b '('a 'key1) '('b 'key2) '()) '())) +(let joinCross (EquiJoin '(list1 'a) '(list2 'b) '('Cross 'a 'b '() '() '()) '())) + +(let sortDir4 '((Bool 'true) (Bool 'true) (Bool 'true) (Bool 'true))) +(let sortDir2 '((Bool 'true) (Bool 'true))) +(let keySelectorAB (lambda '(row) '((Member row '"a.key1") (Member row '"a.subkey1") (Member row '"a.value1") (Member row '"b.key2")))) +(let keySelectorA (lambda '(row) '((Member row '"a.key1") (Member row '"a.subkey1")))) +(let keySelectorB (lambda '(row) '((Member row '"b.key2") (Member row '"b.subkey2")))) + +(let res_sink (DataSink 'result)) +(let world (Write! world res_sink (Key) (Sort joinInner sortDir4 keySelectorAB) '('('type)))) +(let world (Write! world res_sink (Key) (Sort joinLeft sortDir4 keySelectorAB) '('('type)))) +(let world (Write! world res_sink (Key) (Sort joinRight sortDir4 keySelectorAB) '('('type)))) +(let world (Write! world res_sink (Key) (Sort joinFull sortDir4 keySelectorAB) '('('type)))) +(let world (Write! world res_sink (Key) (Sort joinLeftOnly sortDir2 keySelectorA) '('('type)))) +(let world (Write! world res_sink (Key) (Sort joinRightOnly sortDir2 keySelectorB) '('('type)))) +(let world (Write! world res_sink (Key) (Sort joinExclusion sortDir4 keySelectorAB) '('('type)))) +(let world (Write! world res_sink (Key) (Sort joinLeftSemi sortDir2 keySelectorA) '('('type)))) +(let world (Write! world res_sink (Key) (Sort joinRightSemi sortDir2 keySelectorB) '('('type)))) +(let world (Write! world res_sink (Key) (Sort joinCross sortDir4 keySelectorAB) '('('type)))) + +(let world (Commit! world res_sink)) +(return world) +) |