blob: b3dfe801ef548a91f3db80ec78cf078f76b4ec0b [file] [log] [blame]
khfaraaz82@gmail.com71e71482012-08-18 00:25:07 +00001/*
2 * Description : BTree Index verification (usage) test
3 * : This test is intended to verify that the primary BTree index is NOT used
4 * : in the optimized query plan.
5 * Expected Result : Success
6 * Date : 13th Aug 2012
7 */
8
9// Negative test - BTree index should NOT be used in query plan
10
11drop dataverse test if exists;
12create dataverse test;
13use dataverse test;
14
15write output to nc1:"rttest/btree-index_btree-primary-05.adm";
16
17create type TestType as open {
18 fname : string,
19 lname : string
20}
21
22// create internal dataset with primary index defined on fname,lname fields
23create dataset testdst(TestType) partitioned by key fname,lname;
24
25// load valid data with fname and lname entries
26
27load dataset testdst
28using "edu.uci.ics.asterix.external.dataset.adapter.NCFileSystemAdapter"
29(("path"="nc1://data/fn-ln.adm"),("format"="delimited-text"),("delimiter"="|"));
30
31// Query the data that was loaded above.
32
33for $emp in dataset('testdst')
34where $emp.fname != "Max"
35return $emp