[
https://issues.apache.org/jira/browse/KUDU-1434?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15276026#comment-15276026
]
Todd Lipcon commented on KUDU-1434:
-----------------------------------
Go for it! Let us know if you need any help with gerrit, etc.
> Generated impala CREATE TABLE statements say bool is unsupported
> ----------------------------------------------------------------
>
> Key: KUDU-1434
> URL: https://issues.apache.org/jira/browse/KUDU-1434
> Project: Kudu
> Issue Type: Bug
> Components: impala
> Affects Versions: 0.8.0
> Reporter: Adar Dembo
> Priority: Critical
> Fix For: 0.9.0
>
>
> We have a table with a BOOL field and the generated CREATE TABLE statement
> looks like this:
> {noformat}
> CREATE EXTERNAL TABLE `namespace` (
> `prefix` STRING,
> `name` STRING,
> `blocks` BINARY,
> `offsets` BINARY,
> `lengths` BINARY,
> `length` BIGINT,
> `ctime` TIMESTAMP,
> `atime` TIMESTAMP,
> `is_dir` [unsupported type bool!]
> )
> TBLPROPERTIES(
> 'storage_handler' = 'com.cloudera.kudu.hive.KuduStorageHandler',
> 'kudu.table_name' = 'namespace',
> 'kudu.master_addresses' = 'adar-1.vpc.cloudera.com:7051',
> 'kudu.key_columns' = 'prefix, name'
> );
> {noformat}
> Looks like BOOL is missing from the switch statement in
> HtmlOutputImpalaSchema (webui_util.cc).
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)