mirror of
https://github.com/apache/impala.git
synced 2026-01-07 18:02:33 -05:00
For range partitioning use DISTRIBUTE BY RANGE instead. Change-Id: I055b605312a6be76a5439526f9c10ab4c4b432ce Reviewed-on: http://gerrit.sjc.cloudera.com:8080/8063 Tested-by: jenkins Reviewed-by: Martin Grund <mgrund@cloudera.com>
11 lines
363 B
Plaintext
11 lines
363 B
Plaintext
====
|
|
---- QUERY
|
|
SHOW CREATE TABLE functional_kudu.dimtbl
|
|
---- RESULTS
|
|
CREATE TABLE functional_kudu.dimtbl (
|
|
id BIGINT,
|
|
name STRING,
|
|
zip INT
|
|
)
|
|
TBLPROPERTIES ('kudu.master_addresses'='127.0.0.1:7051', 'kudu.key_columns'='id', 'kudu.table_name'='dimtbl', 'transient_lastDdlTime'='1441325601', 'storage_handler'='com.cloudera.kudu.hive.KuduStorageHandler')
|
|
==== |