commit | 669d8f620eca1dfc423004128481926fc13ba421 | [log] [tgz] |
---|---|---|
author | ramangrover29 <ramangrover29@eaa15691-b419-025a-1212-ee371bd00084> | Mon Feb 11 06:03:32 2013 +0000 |
committer | ramangrover29 <ramangrover29@eaa15691-b419-025a-1212-ee371bd00084> | Mon Feb 11 06:03:32 2013 +0000 |
tree | e2829cb4785c1401e1e240b43f9e06e0fdc11c0f | |
parent | 88b03de9f9af7cfc46fb3ae29bb86ee468c45d76 [diff] [blame] |
Fix for issue 252 and 253 git-svn-id: https://asterixdb.googlecode.com/svn/branches/asterix_stabilization_issue_252_253@1182 eaa15691-b419-025a-1212-ee371bd00084
diff --git a/asterix-app/src/test/resources/demo1112/local/04-join-custord.aql b/asterix-app/src/test/resources/demo1112/local/04-join-custord.aql index 1238e7e..fa82c9a 100644 --- a/asterix-app/src/test/resources/demo1112/local/04-join-custord.aql +++ b/asterix-app/src/test/resources/demo1112/local/04-join-custord.aql
@@ -30,9 +30,9 @@ declare nodegroup group1 on nc1, nc2; declare dataset Customers(CustomerType) - partitioned by key cid on group1; + primary key cid on group1; declare dataset Orders(OrderType) - partitioned by key oid on group1; + primary key oid on group1; write output to nc1:"/tmp/custorder.adm";