PRIYESH RANJAN created CARBONDATA-4312:
------------------------------------------
Summary: select query from presto cli does not hit SI
Key: CARBONDATA-4312
URL: https://issues.apache.org/jira/browse/CARBONDATA-4312
Project: CarbonData
Issue Type: Bug
Components: data-query
Affects Versions: 2.2.0
Environment: Presto 333
Reporter: PRIYESH RANJAN
Query :
from spark sesssion :
drop table if exists table1;
create table table1 (name string, id string, country string) stored as
carbondata;
insert into table1 select 'xx', '2', 'china' ;
create index table1_index on table table1(id, country) as 'carbondata';
insert into table1 select 'xx', '2', 'china' ;
from presto session:
select * from table1 where id ='2';
from spark session :-
show metacache on table table1;
--
This message was sent by Atlassian Jira
(v8.3.4#803005)