Added asterix project

git-svn-id: https://asterixdb.googlecode.com/svn/trunk@12 eaa15691-b419-025a-1212-ee371bd00084
diff --git a/asterix/asterix-app/src/test/resources/AQLTS/queries/5.aql b/asterix/asterix-app/src/test/resources/AQLTS/queries/5.aql
new file mode 100644
index 0000000..2dfb537
--- /dev/null
+++ b/asterix/asterix-app/src/test/resources/AQLTS/queries/5.aql
@@ -0,0 +1,10 @@
+for $event in dataset('Event')
+where $event.name = "The Night of the Ad Eaters, 29th edition"
+let $collocated_events :=
+   for $collocated_event in dataset('Events')
+   where $collocated_event.location.street ~= $event.location.street
+   and $collocated_event.location.city = $event.location.city
+   and $collocated_event.location.state = $event.location.state
+   and $collocated_event.location.zip = $event.location.zip
+   return { "event_name" : $collocated_event.name }
+return { "collocated_evnets" : $collocated_events }