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