mirror of
https://github.com/apache/impala.git
synced 2026-01-04 09:00:56 -05:00
Bumps the toolchain version to get a newer Kudu build. Also fixes test failures resulting from changes in Kudu. Notably error strings have changed (IMPALA-4590) and the number of replicas must be odd (IMPALA-4589). Note: The toolchain binaries starting with this build are now using the toolchain binutils rather than the system binutils. Testing: private exhaustive build. Change-Id: If1912f058c240fbe82b06f77e31add7755289be1 Reviewed-on: http://gerrit.cloudera.org:8080/5369 Reviewed-by: Matthew Jacobs <mj@cloudera.com> Tested-by: Internal Jenkins
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
====
|
|
---- QUERY
|
|
create table simple (id int primary key, name string, valf float, vali bigint)
|
|
partition by range (partition values < 10, partition 10 <= values < 30,
|
|
partition 30 <= values) stored as kudu tblproperties('kudu.num_tablet_replicas' = '1')
|
|
---- RESULTS
|
|
====
|
|
---- QUERY
|
|
show table stats simple
|
|
---- RESULTS
|
|
-1,'','8000000A',regex:.*?:\d+,1
|
|
-1,'8000000A','8000001E',regex:.*?:\d+,1
|
|
-1,'8000001E','',regex:.*?:\d+,1
|
|
---- TYPES
|
|
INT,STRING,STRING,STRING,INT
|
|
---- LABELS
|
|
# Rows,Start Key,Stop Key,Leader Replica,# Replicas
|
|
====
|
|
---- QUERY
|
|
# IMPALA-3373: Computing stats on a Kudu table lead to duplicate columns shown for the
|
|
# table.
|
|
compute stats simple;
|
|
describe simple;
|
|
---- RESULTS
|
|
'id','int','','true','false','','AUTO_ENCODING','DEFAULT_COMPRESSION','0'
|
|
'name','string','','false','true','','AUTO_ENCODING','DEFAULT_COMPRESSION','0'
|
|
'valf','float','','false','true','','AUTO_ENCODING','DEFAULT_COMPRESSION','0'
|
|
'vali','bigint','','false','true','','AUTO_ENCODING','DEFAULT_COMPRESSION','0'
|
|
---- TYPES
|
|
STRING,STRING,STRING,STRING,STRING,STRING,STRING,STRING,STRING
|
|
====
|