blob: d60a8acd3c8d8de4ec09f7600f8c6fadbdb84b12 [file] [log] [blame]
/*
* Description : Equi joins two datasets, Customers and Orders, based on the customer id.
* Given the 'indexnl' hint we expect the join to be transformed
* into an indexed nested-loop join using Customers' primary index.
* Success : Yes
*/
drop dataverse test if exists;
create dataverse test;
use dataverse test;
create type AddressType as closed {
number: int32,
street: string,
city: string
}
create type CustomerType as closed {
cid: int32,
name: string,
age: int32?,
address: AddressType?,
lastorder: {
oid: int32,
total: float
}
}
create type OrderType as closed {
oid: int32,
cid: int32,
orderstatus: string,
orderpriority: string,
clerk: string,
total: float
}
create dataset Customers(CustomerType) partitioned by key cid;
create dataset Orders(OrderType) partitioned by key oid;
write output to nc1:"rttest/btree-index-join_primary-equi-join_04.adm";
for $c in dataset('Customers')
for $o in dataset('Orders')
where $c.cid /*+ indexnl */ = $o.cid
return {"customer":$c, "order": $o}