You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Xiu (JIRA)" <ji...@apache.org> on 2013/08/23 02:51:57 UTC

[jira] [Created] (HIVE-5141) insert from another table, data get implicit converted when column type is different

Xiu created HIVE-5141:
-------------------------

             Summary: insert from another table, data get implicit converted when column type is different
                 Key: HIVE-5141
                 URL: https://issues.apache.org/jira/browse/HIVE-5141
             Project: Hive
          Issue Type: Bug
          Components: CLI
    Affects Versions: 0.9.0
            Reporter: Xiu
            Priority: Minor


describe t1;
i smallint

describe t2;
i bigint

select * from t2;
9
9999999999

insert overwrite table t1 select * from t2;
select * from t1;
9
-7169

--
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