blob: fc305296a64022eb452deaaceeb39c04008e18af [file] [log] [blame]
/*
* Test case Name : scan-delete-rtree-secondary-index-nullable.aql
* Description : This test is intended to test deletion from secondary rtree indexes that are built on nullable fields
* Expected Result : Success
* Date : May 12 2012
*/
drop dataverse test if exists;
create dataverse test;
use dataverse test;
create type MyRecord as closed {
id: int32,
point: point?,
kwds: string,
line1: line,
line2: line,
poly1: polygon,
poly2: polygon,
rec: rectangle
}
create dataset MyData(MyRecord)
partitioned by key id;
load dataset MyData
using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
(("path"="nc1://data/spatial/spatialDataNulls.json"),("format"="adm")) pre-sorted;
create index rtree_index_point on MyData(point) type rtree;
delete $m from dataset MyData where $m.id>10;
write output to nc1:"rttest/dml_scan-delete-rtree-secondary-index-nullable.adm";
for $o in dataset('MyData')
where spatial-intersect($o.point, create-polygon(create-point(0.0,1.0), create-point(0.0,4.0), create-point(12.0,4.0), create-point(12.0,1.0)))
order by $o.id
return {"id":$o.id}