Created
August 7, 2012 14:28
-
-
Save shiumachi/3285804 to your computer and use it in GitHub Desktop.
cdh-user-jp@ のバグテスト用Hiveスクリプト
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
drop table test_table; | |
drop table test_table1; | |
drop table test_table2; | |
CREATE TABLE test_table (id INT, name STRING); | |
set hive.metastore.warehouse.dir=/tmp/warehouse; | |
CREATE TABLE test_table1 (id INT, name STRING); | |
set hive.metastore.warehouse.dir=/tmp/warehouse2; | |
CREATE TABLE test_table2 (id INT, name STRING); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment