mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-08 09:41:19 +00:00
66 lines
2.2 KiB
SQL
66 lines
2.2 KiB
SQL
CREATE DATABASE IF NOT EXISTS db1;
|
|
CREATE DATABASE IF NOT EXISTS db2;
|
|
-- Setup a "pokes" example table.
|
|
CREATE TABLE IF NOT EXISTS db1.pokes (foo INT, bar STRING) PARTITIONED BY (baz STRING);
|
|
LOAD DATA LOCAL INPATH '/opt/hive/examples/files/kv1.txt' OVERWRITE INTO TABLE db1.pokes PARTITION (baz='dummy');
|
|
|
|
CREATE TABLE IF NOT EXISTS db2.pokes (foo INT, bar STRING);
|
|
LOAD DATA LOCAL INPATH '/opt/hive/examples/files/kv1.txt' OVERWRITE INTO TABLE db2.pokes;
|
|
|
|
-- Setup a table with a special character.
|
|
CREATE TABLE IF NOT EXISTS db1.`_test_table_underscore` (foo INT, bar STRING);
|
|
|
|
-- Create tables with struct and array types.
|
|
-- From https://stackoverflow.com/questions/57491644/correct-usage-of-a-struct-in-hive.
|
|
CREATE TABLE IF NOT EXISTS db1.struct_test
|
|
(
|
|
property_id INT,
|
|
service STRUCT<
|
|
type: STRING
|
|
,provider: ARRAY<INT>
|
|
>
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS db1.array_struct_test
|
|
(
|
|
property_id INT COMMENT 'id of property',
|
|
service array<STRUCT<
|
|
type: STRING
|
|
,provider: ARRAY<INT>
|
|
>> COMMENT 'service types and providers'
|
|
) TBLPROPERTIES ('comment' = 'This table has array of structs', 'another.comment' = 'This table has no partitions');;
|
|
|
|
WITH
|
|
test_data as (
|
|
SELECT 989 property_id, array(NAMED_STRUCT('type','Cleaning','provider', ARRAY(587, 887)),
|
|
NAMED_STRUCT('type','Pricing','provider', ARRAY(932))
|
|
) AS service
|
|
)
|
|
INSERT INTO TABLE db1.array_struct_test
|
|
select * from test_data;
|
|
|
|
CREATE MATERIALIZED VIEW db1.struct_test_view_materialized as select * from db1.struct_test;
|
|
CREATE VIEW db1.array_struct_test_view as select * from db1.array_struct_test;
|
|
|
|
CREATE VIEW db1.array_struct_test_view_multiline AS
|
|
SELECT
|
|
'constant1' AS constant1,
|
|
2 AS constant2,
|
|
property_id,
|
|
service
|
|
FROM db1.array_struct_test_view;
|
|
|
|
CREATE TABLE IF NOT EXISTS db1.nested_struct_test
|
|
(
|
|
property_id INT,
|
|
service STRUCT<
|
|
type: STRING
|
|
,provider: STRUCT<name:VARCHAR(50), id:TINYINT>
|
|
>
|
|
);
|
|
|
|
CREATE TABLE db1.union_test(
|
|
foo UNIONTYPE<int, double, array<string>, struct<a:int,b:string>, struct<c:int,d:double>>
|
|
) STORED AS ORC ;
|
|
|
|
CREATE TABLE db1.map_test(KeyValue String, RecordId map<int,string>); |