You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "caofangkun (JIRA)" <ji...@apache.org> on 2013/03/21 06:49:16 UTC

[jira] [Created] (HIVE-4210) output of "show create table" shoud contain a Semicolon at the end of the query string

caofangkun created HIVE-4210:
--------------------------------

             Summary: output of "show create table" shoud contain a Semicolon at the end of the query string
                 Key: HIVE-4210
                 URL: https://issues.apache.org/jira/browse/HIVE-4210
             Project: Hive
          Issue Type: Bug
          Components: Query Processor
    Affects Versions: 0.10.0
            Reporter: caofangkun
            Priority: Minor


Before: 
hive (default)> SHOW CREATE TABLE v1
              > ;
[2013-03-21 11:31:57]: Compile Start 
[2013-03-21 11:31:59]: Compile End
[2013-03-21 11:31:59]: OK
CREATE VIEW v1 AS SELECT `src`.`key`, `src`.`value` from `default`.`src`
[2013-03-21 11:31:59]: Time taken: 2.528 seconds

After Fix:
hive (default)> SHOW CREATE TABLE v1;
[2013-03-21 13:48:31]: Compile Start 
[2013-03-21 13:48:34]: Compile End
[2013-03-21 13:48:34]: OK
CREATE VIEW v1 AS SELECT `src`.`key`, `src`.`value` from `default`.`src`;
[2013-03-21 13:48:34]: Time taken: 2.462 seconds

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira