Select Statement is failing for ORC Transaction table with Struct Data Columns
sumanth43 opened this issue · 0 comments
sumanth43 commented
Software Environment:
-
OpenLooKeng version (source or binary): 1.4.0
-
OS platform & distribution (eg., Linux Ubuntu 16.04):
-
Java version:
Describe the current behavior
Select Statement is failing for ORC Transaction table with Struct Data Columns.
Describe the expected behavior
Should be Success
Steps to reproduce the issue
- CREATE TABLE testorders(orderkey array(varchar), orderstatus row(big int), lables map(varchar, integer)) WITH (format='orc',transactional=true);
- INSERT INTO testorders VALUES (ARRAY ['YOUNG', 'FASION', 'STYLE'], row(111), MAP(ARRAY ['type', 'grand'], ARRAY [1, 2]));
- select * from testorders;