Sign in
apache
/
hive
/
trunk
/
.
/
ql
/
src
/
test
/
queries
/
positive
/
input5.q
blob: a46abc75833f05d4e3a355a09369e488fb8dcc67 [
file
]
FROM
(
FROM src_thrift
SELECT TRANSFORM
(
src_thrift
.
lint
,
src_thrift
.
lintstring
)
USING
'/bin/cat'
AS
(
tkey
,
tvalue
)
CLUSTER BY tkey
)
tmap
INSERT OVERWRITE TABLE dest1 SELECT tmap
.
tkey
,
tmap
.
tvalue