Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
impersonation
/
dfs
/
ownertwotables.q
blob: 20c42f6b3bfc0099764c81262218ec9a3dff24de [
file
] [
log
] [
blame
]
use
dfs
;
select
t1
.
c_row
,
t1
.
c_groupby
,
t2
.
c_int
,
t2
.
c_bigint
from
`/drill/testdata/impersonation/t1.parquet`
t1
,
`/drill/testdata/impersonation/t2.parquet`
t2
where
t1
.
c_row
=
t2
.
c_int
;
use
dfs
;