diff --git a/core/translate/emitter.rs b/core/translate/emitter.rs index a1d9c7ce7..37f14f73e 100644 --- a/core/translate/emitter.rs +++ b/core/translate/emitter.rs @@ -87,11 +87,11 @@ pub struct Metadata { // for example, in a join with two nested scans, the inner loop will jump to its Next instruction when the join condition is false; // in a join with a scan and a seek, the seek will jump to the scan's Next instruction when the join condition is false. next_row_labels: HashMap, - // labels for the Rewind instructions. + // labels for the instructions beginning the inner loop of a scan operator. scan_loop_body_labels: Vec, // metadata for the group by operator group_by_metadata: Option, - // mapping between Order operator id and associated metadata + // metadata for the order by operator sort_metadata: Option, // mapping between Join operator id and associated metadata (for left joins only) left_joins: HashMap,