Sign in
apache
/
hive
/
trunk
/
.
/
ql
/
src
/
test
/
queries
/
positive
/
union.q
blob: 6a6b9882aee711c578af356f841e7fab2bbb5544 [
file
]
FROM
(
FROM src
select
src
.
key
,
src
.
value WHERE src
.
key
<
100
UNION ALL
FROM src SELECT src
.*
WHERE src
.
key
>
100
)
unioninput
INSERT OVERWRITE DIRECTORY
'../build/ql/test/data/warehouse/union.out'
SELECT unioninput
.*