From 33fcb4c7fef1768fee4890a8cd03e00d83ca6056 Mon Sep 17 00:00:00 2001 From: "Peter J. Keleher" <keleher@cs.umd.edu> Date: Wed, 11 Oct 2023 22:13:30 -0400 Subject: [PATCH] auto --- assign6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assign6.md b/assign6.md index 2b64f10..d683d3c 100644 --- a/assign6.md +++ b/assign6.md @@ -21,7 +21,7 @@ The database system is written in Python and attempts to simulate how a database * `disk_relations.py`: This module contains the classes Block, RelationBlock, Relation, and a few others helper classes like Pointer. A Block is a base class, that is subclassed by RelationBlock and BTreeBlock (in `btree.py` file). A RelationBlock contains a set of tuples, and a Relation contains a list of RelationBlocks. -* `queryprocessing.py`: This contains naive implementations of some of the query processing operators, including SequentialScan, NestedLoopsJoin, HashJoin, and SortMergeJoin. The operators are written using the iterator `get_next` interface, which is discussed in Chapter 12.7.2.1. +* `queryprocessing.py`: This contains naive implementations of some of the query processing operators, including SequentialScan, NestedLoopsJoin, HashJoin, and SortMergeJoin. The operators are written using the iterator `get_next` interface, which is discussed in Chapter 15.7. ### How to Use the Files -- GitLab