Sign in
apache
/
drill-test-framework
/
d8d7538f560c515139a5f4743d86b15968a46092
/
.
/
framework
/
resources
/
Functional
/
views
/
text_query1.q
blob: 88860a0a036187992003fbca10a5ab12870d0991 [
file
] [
log
] [
blame
]
create
or
replace view v1_text
as
select
columns
[
0
]
as
c1
,
columns
[
1
]
as
c2
,
columns
[
2
]
as
c3
from
`dfs/text/rankings`
;
select
count
(*)
from
v1_text
;
drop view v1_text
;