You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Jaehwa Jung (JIRA)" <ji...@apache.org> on 2015/07/17 18:48:04 UTC

[jira] [Created] (TAJO-1690) Create table using text file fails in HiveCatalogStore.

Jaehwa Jung created TAJO-1690:
---------------------------------

             Summary: Create table using text file fails in HiveCatalogStore.
                 Key: TAJO-1690
                 URL: https://issues.apache.org/jira/browse/TAJO-1690
             Project: Tajo
          Issue Type: Bug
          Components: Catalog
            Reporter: Jaehwa Jung
            Assignee: Jaehwa Jung


Create table using text file fails in HiveCatalogStore as follows.

* TSQL
{code:xml}
default> create external table supplier (S_SUPPKEY bigint, S_NAME text, S_ADDRESS text, S_NATIONKEY bigint, S_PHONE text, S_ACCTBAL double, S_COMMENT text) using text with ('textfile.delimiter'='|') location 'hdfs://localhost:9010/tpch/supplier';
ERROR: Cannot create table "default.supplier".
{code}

* TajoMaster log
{code:xml}
2015-07-18 01:40:12,055 ERROR org.apache.tajo.catalog.CatalogServer: org.apache.tajo.common.exception.NotImplementedException: text
org.apache.tajo.catalog.exception.CatalogException: org.apache.tajo.common.exception.NotImplementedException: text
	at org.apache.tajo.catalog.store.HiveCatalogStore.createTable(HiveCatalogStore.java:553)
	at org.apache.tajo.catalog.CatalogServer$CatalogProtocolHandler.createTable(CatalogServer.java:602)
	at org.apache.tajo.catalog.AbstractCatalogClient.createTable(AbstractCatalogClient.java:406)
	at org.apache.tajo.master.exec.DDLExecutor.createTable(DDLExecutor.java:275)
	at org.apache.tajo.master.exec.DDLExecutor.createTable(DDLExecutor.java:211)
	at org.apache.tajo.master.exec.DDLExecutor.execute(DDLExecutor.java:91)
	at org.apache.tajo.master.exec.QueryExecutor.execute(QueryExecutor.java:107)
{code}

It seems that HiveCatalogStore just support csv file format. We need to support text file format in HiveCatalogStore.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)