Sign in
apache
/
hawq
/
master
/
.
/
src
/
test
/
feature
/
Ranger
/
data
/
testhive.sql
blob: 3ae6c58d9bf4e7b1bf3bc857403679a8029d0d5b [
file
] [
log
] [
blame
]
drop
table
if
exists
testhive
;
CREATE
TABLE
testhive
(
a int
,
b int
)
;
INSERT
INTO
testhive
VALUES
(
1
,
2
);
INSERT
INTO
testhive
VALUES
(
2
,
4
);
INSERT
INTO
testhive
VALUES
(
3
,
6
);