Sign in
apache
/
drill-test-framework
/
d8d7538f560c515139a5f4743d86b15968a46092
/
.
/
framework
/
resources
/
Functional
/
views
/
hive_query1.q
blob: 9139e179023ca152ac212e3508ce65aadc01b87c [
file
] [
log
] [
blame
]
create
or
replace view v1_hive
as
select
voter_id
,
name
,
age
,
registration
,
contributions
,
voterzone
,
create_time
from
`hive.default`
.
voter
;
select
count
(*)
from
v1_hive
;
drop view v1_hive
;