Sign in
apache
/
kyuubi
/
refs/heads/master
/
.
/
python
/
scripts
/
make_one_row.sh
blob: b4ecf81c4286ac19704a252d67f9cb9aee05a5d0 [
file
] [
log
] [
blame
]
#!/bin/bash -eux
hive
-
e
'
set mapred.job.tracker=local;
DROP TABLE IF EXISTS one_row;
CREATE TABLE one_row (number_of_rows INT);
INSERT INTO TABLE one_row VALUES (1);
'