Sign in
apache
/
drill-test-framework
/
refs/heads/main
/
.
/
framework
/
resources
/
Functional
/
crossjoin
/
projectBothTables4.sql
blob: ded3f72b53eb6d225d64a1b83b2146c55db5aed5 [
file
]
set
`
planner
.
enable_nljoin_for_scalar_only
`
=
false
;
select
c
.
c_custkey
,
o
.
o_orderkey
from
customer c
cross
join
orders o
order
by
c
.
c_custkey
,
o
.
o_orderkey limit
10
;
reset
`
planner
.
enable_nljoin_for_scalar_only
`;