openlookeng/hetu-core

Select Statement is failing for ORC Transaction table with Struct Data Columns

sumanth43 opened this issue · 0 comments

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

  1. CREATE TABLE testorders(orderkey array(varchar), orderstatus row(big int), lables map(varchar, integer)) WITH (format='orc',transactional=true);
  2. INSERT INTO testorders VALUES (ARRAY ['YOUNG', 'FASION', 'STYLE'], row(111), MAP(ARRAY ['type', 'grand'], ARRAY [1, 2]));
  3. select * from testorders;

Related log/screenshots

Special notes for this issue