Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
2.2.0
-
None
-
None
-
Presto 333
Description
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;