You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafodion.apache.org by "Alice Chen (JIRA)" <ji...@apache.org> on 2015/07/22 20:15:11 UTC

[jira] [Created] (TRAFODION-197) LP Bug: 1293816 - Hive: Rows do not show up after inserting into a hive table

Alice Chen created TRAFODION-197:
------------------------------------

             Summary: LP Bug: 1293816 - Hive: Rows do not show up after inserting into a hive table
                 Key: TRAFODION-197
                 URL: https://issues.apache.org/jira/browse/TRAFODION-197
             Project: Apache Trafodion
          Issue Type: Bug
          Components: sql-exe
            Reporter: Weishiun Tsai
            Assignee: Suresh Subbiah
            Priority: Critical


>From sqlci, the rows inserted into a hive table wouldn’t show up if the user continue to use the same sqlci section.  Right now, the user would need to quit sqlci and start a new one to see these new rows:

>>set schema hive.hive;

--- SQL operation complete.
>>invoke hivetest;

-- Definition of hive table HIVETEST
-- Definition current  Mon Mar 17 15:06:33 2014

  (
    A                                INT
  )

--- SQL operation complete.
>>select * from hivetest;

--- 0 row(s) selected.
>>insert into hivetest values (1),(2),(3);

--- 3 row(s) inserted.
>>select * from hivetest;

--- 0 row(s) selected.



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