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