You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kudu.apache.org by "Adar Dembo (JIRA)" <ji...@apache.org> on 2016/04/29 22:37:12 UTC

[jira] [Created] (KUDU-1434) Generated impala CREATE TABLE statements say bool is unsupported

Adar Dembo created KUDU-1434:
--------------------------------

             Summary: 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)