Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed
Browse files Browse the repository at this point in the history
zenus committed May 22, 2024
1 parent 7b696c7 commit dec32a4
Showing 1 changed file with 38 additions and 38 deletions.
Original file line number Diff line number Diff line change
@@ -42,25 +42,25 @@ JOIN (
ON p.key = e.key AND p.ts >= e.begin AND p.ts < e.ed
ORDER BY 1, 2 ASC
----
1 1 0
1 2 0
1 3 1
1 4 1
1 5 1
1 6 2
1 7 2
1 8 3
1 9 3
2 0 10
2 1 10
2 2 10
2 3 10
2 4 10
2 5 10
2 6 10
2 7 20
2 8 20
2 9 20
1.0 1.0 0
1.0 2.0 0
1.0 3.0 1
1.0 4.0 1
1.0 5.0 1
1.0 6.0 2
1.0 7.0 2
1.0 8.0 3
1.0 9.0 3
2.0 0.0 10
2.0 1.0 10
2.0 2.0 10
2.0 3.0 10
2.0 4.0 10
2.0 5.0 10
2.0 6.0 10
2.0 7.0 20
2.0 8.0 20
2.0 9.0 20

# INNER ON with equality
query III nosort inner_equality
@@ -69,23 +69,23 @@ FROM probes p ASOF JOIN events e
ON p.key = e.key AND p.ts >= e.begin
ORDER BY 1, 2 ASC
----
1 1 0
1 2 0
1 3 1
1 4 1
1 5 1
1 6 2
1 7 2
1 8 3
1 9 3
2 0 10
2 1 10
2 2 10
2 3 10
2 4 10
2 5 10
2 6 10
2 7 20
2 8 20
2 9 20
1.0 1.0 0
1.0 2.0 0
1.0 3.0 1
1.0 4.0 1
1.0 5.0 1
1.0 6.0 2
1.0 7.0 2
1.0 8.0 3
1.0 9.0 3
2.0 0.0 10
2.0 1.0 10
2.0 2.0 10
2.0 3.0 10
2.0 4.0 10
2.0 5.0 10
2.0 6.0 10
2.0 7.0 20
2.0 8.0 20
2.0 9.0 20

0 comments on commit dec32a4

Please sign in to comment.