[x] I have run the ci check script with source scripts/run_ci_checks.sh.
[x] PR #385 has been merged.
[x] PR #389 has been merged.
Rationale for this change
Now let's add the simplest form of join without adding its proof yet, that is, the cross join. Cross joins are not that common but they are easier to implement than inner joins since they don't require sorting or matching.
Please be sure to look over the pull request guidelines here: https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/CONTRIBUTING.md#submit-pr.
Please go through the following checklist
!
is used if and only if at least one breaking change has been introduced.source scripts/run_ci_checks.sh
.Rationale for this change
Now let's add the simplest form of join without adding its proof yet, that is, the cross join. Cross joins are not that common but they are easier to implement than inner joins since they don't require sorting or matching.
What changes are included in this PR?
cross_join
Yes.