Closed wyl4pd closed 6 months ago
102 files 102 suites 2m 15s :stopwatch: 359 tests 345 :white_check_mark: 14 :zzz: 0 :x: 487 runs 473 :white_check_mark: 14 :zzz: 0 :x:
Results for commit 30614059.
:recycle: This comment has been updated with latest results.
Attention: Patch coverage is 79.31034%
with 30 lines
in your changes are missing coverage. Please review.
Project coverage is 75.19%. Comparing base (
d9bb344
) to head (3061405
). Report is 4 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
59 files 252 suites 1h 47m 55s :stopwatch: 13 509 tests 13 502 :white_check_mark: 7 :zzz: 0 :x: 19 181 runs 19 174 :white_check_mark: 7 :zzz: 0 :x:
Results for commit 30614059.
:recycle: This comment has been updated with latest results.
sqls: node1: SELECT col1, col2 FROM table1 node2: SELECT col3, col4 FROM table2 node3: SELECT c1.col1, c1.col2, c2.col3, c2.col4 FROM cte1 c1 JOIN cte2 c2 ON c1.col1 = c2.col3
dag: node1: {} node2: {} node3: {cte1: node1, cte2: node2}
tableSchema: table1: ... table2: ...
output: WITH cte1 AS ( SELECT col1, col2 FROM table1 ), cte2 AS ( SELECT col3, col4 FROM table2 ) SELECT c1.col1, c1.col2, c2.col3, c2.col4 FROM cte1 c1 JOIN cte2 c2 ON c1.col1 = c2.col3