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