Checkpoint 2 - minor correction

This commit is contained in:
Gokhan Kul 2018-02-21 23:49:07 -05:00
parent 71f6dcb2a4
commit d7fde9c267

View file

@ -52,7 +52,7 @@ $> <span style="color: red">SELECT A, E FROM R, S WHERE R.A = S.D;</span>
1|2
</pre>
<p>For this project, we will issue 5 queries to your program excluding <tt>CREATE TABLE</tt> queries. 3 of these queries will NOT be timed, and they will evaluated based on the correctness of the query results. Answering each query successfully will bring you 1 point each. An example file you will read the data from is given <a href="https://www.cse.buffalo.edu/~gokhanku/R.dat">here</a>. The remaining two queries will be timed, and they will run on files that have around 1000 tuples (~100 KB). You will get 2 point for each query if you can return correct results. You will receive additional 1.5 points for each query for matching or beating the reference implementation timewise. Also keep in mind that for ALL queries, the grader will time out and exit after 5 minutes.
<p>For this project, we will issue 5 queries to your program excluding <tt>CREATE TABLE</tt> queries. 3 of these queries will NOT be timed, and they will evaluated based on the correctness of the query results. Answering each query successfully will bring you 1 point each. An example file you will read the data from is given <a href="https://www.cse.buffalo.edu/~gokhanku/R.dat">here</a>. The remaining two queries will be timed, and they will run on files that have around 1000 tuples (~100 KB). You will receive 1.5 points for each query if you can return correct results. You will receive additional 2 points for each query for matching or beating the reference implementation timewise. Also keep in mind that for ALL queries, the grader will time out and exit after 5 minutes.
There is also a memory limit that will not allow you to load full tables and cross product them for joins.
</p>