Files
secondo/Optimizer/Distributed/Scripts/CreateSEC2DISTINDEXES.sec

16 lines
591 B
Plaintext
Raw Normal View History

2026-01-23 17:03:45 +08:00
# has a tuple for each distributed index
# DistObj: the d[f]array-object that represents the distributed relation
# Attr: the attribute which the index was created on
# IndexType: btree or rtree
# IndexObj: the d[f]array which represents the distributed index
open database nrw2;
delete SEC2DISTINDEXES;
let SEC2DISTINDEXES = [const rel(tuple([DistObj: string, Attr: string, IndexType: string, IndexObj: string]))
value (("NaturalDFunctionIndex" "Type" "btree" "NaturalDFunctionIndex_Type")
("BuildingsDSpatialIndex" "GeoData" "rtree" "BuildingsDSpatialIndex_GeoData"))]
close database;