Gitiles
Code Review
Sign In
asterix-gerrit.ics.uci.edu
/
asterixdb
/
a70fba5c587be7ca11b4956d6e4334c88f822769
/
.
/
asterix-experiments
/
src
/
main
/
resources
/
ingestion-experiment-binary-and-configs
/
aql
/
7_q2.aql
blob: f69150904ef97aa572de190903a1883ea1c43afb [
file
] [
log
] [
blame
]
Ian Maxon
a70fba5
2016-02-18 13:52:36 -0800
[
diff
] [
blame^
]
1
use
dataverse experiments
;
2
3
let
$count
:=
count
(
4
for
$t
in
dataset
Tweets
5
where
$t
.
tweetid
>=
int64
(
"1"
)
and
$t
.
tweetid
<=
int64
(
"1000"
)
6
return
$t
7
)
8
return
$count