1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

//! The Query Graph Model.
//!
//! The public interface consists of the following items:
//! * [`Model`]
//! * [`BoxId`]
//! * [`QuantifierId`]
//! * [`DistinctOperation`]
//!
//! All other types are crate-private.

use std::cell::{Ref, RefCell, RefMut};
use std::collections::BTreeSet;
use std::collections::{BTreeMap, HashMap, HashSet};
use std::fmt;
use std::ops::{Deref, DerefMut};

use bitflags::bitflags;
use itertools::Itertools;

use mz_expr::TableFunc;
use mz_ore::id_gen::Gen;
use mz_sql_parser::ast::Ident;

use super::super::attribute::core::Attributes;
use super::scalar::*;

#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct QuantifierId(pub u64);
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct BoxId(pub u64);

impl std::fmt::Display for QuantifierId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.0.fmt(f)
    }
}

impl std::fmt::Display for BoxId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.0.fmt(f)
    }
}

impl From<u64> for QuantifierId {
    fn from(value: u64) -> Self {
        QuantifierId(value)
    }
}

impl From<u64> for BoxId {
    fn from(value: u64) -> Self {
        BoxId(value)
    }
}

pub(crate) type QuantifierSet = BTreeSet<QuantifierId>;

/// A Query Graph Model instance represents a SQL query.
/// See [the design doc](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/design/20210707_qgm_sql_high_level_representation.md) for details.
///
/// In this representation, SQL queries are represented as a graph of operators,
/// represented as boxes, that are connected via quantifiers. A top-level box
/// represents the entry point of the query.
///
/// Each non-leaf box has a set of quantifiers, which are the inputs of the
/// operation it represents. The quantifier adds information about how the
/// relation represented by its input box is consumed by the parent box.
#[derive(Debug, Default)]
pub struct Model {
    /// The ID of the box representing the entry-point of the query.
    pub(crate) top_box: BoxId,
    /// All boxes in the query graph model.
    boxes: HashMap<BoxId, Box<RefCell<QueryBox>>>,
    /// Used for assigning unique IDs to query boxes.
    box_id_gen: Gen<BoxId>,
    /// All quantifiers in the query graph model.
    quantifiers: HashMap<QuantifierId, Box<RefCell<Quantifier>>>,
    /// Used for assigning unique IDs to quantifiers.
    quantifier_id_gen: Gen<QuantifierId>,
}

/// A mutable reference to an object of type `T` (a [`QueryBox`] or a [`Quantifier`])
/// bound to a specific [`Model`].
#[derive(Debug)]
pub(crate) struct BoundRef<'a, T> {
    model: &'a Model,
    r#ref: Ref<'a, T>,
}

impl<T> Deref for BoundRef<'_, T> {
    type Target = T;

    fn deref(&self) -> &T {
        self.r#ref.deref()
    }
}

/// A mutable reference to an object of type `T` (a [`QueryBox`] or a [`Quantifier`])
/// bound to a specific [`Model`].
#[derive(Debug)]
pub(crate) struct BoundRefMut<'a, T> {
    model: &'a mut Model,
    r#ref: RefMut<'a, T>,
}

impl<T> Deref for BoundRefMut<'_, T> {
    type Target = T;

    fn deref(&self) -> &T {
        self.r#ref.deref()
    }
}

impl<T> DerefMut for BoundRefMut<'_, T> {
    fn deref_mut(&mut self) -> &mut T {
        self.r#ref.deref_mut()
    }
}

/// A semantic operator within a Query Graph.
#[derive(Debug)]
pub(crate) struct QueryBox {
    /// uniquely identifies the box within the model
    pub id: BoxId,
    /// the type of the box
    pub box_type: BoxType,
    /// the projection of the box
    pub columns: Vec<Column>,
    /// the input quantifiers of the box
    pub quantifiers: QuantifierSet,
    /// quantifiers ranging over this box
    pub ranging_quantifiers: QuantifierSet,
    /// whether this box must enforce the uniqueness of its output, it is
    /// guaranteed by structure of the box or it must preserve duplicated
    /// rows from its input boxes. See [DistinctOperation].
    pub distinct: DistinctOperation,
    /// Derived attributes
    pub attributes: Attributes,
}

/// A column projected by a `QueryBox`.
#[derive(Debug)]
pub(crate) struct Column {
    pub expr: BoxScalarExpr,
    pub alias: Option<Ident>,
}

/// Enum that describes the DISTINCT property of a `QueryBox`.
#[derive(Debug, Eq, Hash, PartialEq)]
pub enum DistinctOperation {
    /// Distinctness of the output of the box must be enforced by
    /// the box.
    Enforce,
    /// Distinctness of the output of the box is required, but
    /// guaranteed by the structure of the box.
    Guaranteed,
    /// Distinctness of the output of the box is not required.
    Preserve,
}

#[derive(Debug)]
pub(crate) struct Quantifier {
    /// uniquely identifiers the quantifier within the model
    pub id: QuantifierId,
    /// the type of the quantifier
    pub quantifier_type: QuantifierType,
    /// the input box of this quantifier
    pub input_box: BoxId,
    /// the box that owns this quantifier
    pub parent_box: BoxId,
    /// alias for name resolution purposes
    pub alias: Option<Ident>,
}

bitflags! {
    pub struct QuantifierType: u64 {
        /// An ALL subquery.
        const ALL = 0b00000001;
        /// An existential subquery (IN SELECT/EXISTS/ANY).
        const EXISTENTIAL = 0b00000010;
        /// A regular join operand where each row from its input
        /// box must be consumed by the parent box operator.
        const FOREACH = 0b00000100;
        /// The preserving side of an outer join. Only valid in
        /// OuterJoin boxes.
        const PRESERVED_FOREACH = 0b00001000;
        /// A scalar subquery that produces one row at most.
        const SCALAR = 0b00010000;
    }
}

#[derive(Debug, Clone)]
pub(crate) enum BoxType {
    /// A table from the catalog.
    Get(Get),
    /// SQL's except operator
    #[allow(dead_code)]
    Except,
    /// GROUP BY operator.
    Grouping(Grouping),
    /// SQL's intersect operator
    #[allow(dead_code)]
    Intersect,
    /// OUTER JOIN operator. Contains one preserving quantifier
    /// at most: exactly one for LEFT/RIGHT OUTER JOIN, none
    /// for FULL OUTER JOIN.
    OuterJoin(OuterJoin),
    /// An operator that performs join, filter and project in
    /// that order.
    Select(Select),
    /// The invocation of table function from the catalog.
    CallTable(CallTable),
    /// SQL's union operator
    Union,
    /// Operator that produces a set of rows, with potentially
    /// correlated values.
    Values(Values),
}

#[derive(Debug, Clone)]
pub(crate) struct Get {
    pub id: mz_repr::GlobalId,
    pub unique_keys: Vec<Vec<usize>>,
}

impl From<Get> for BoxType {
    fn from(get: Get) -> Self {
        BoxType::Get(get)
    }
}

/// The content of a Grouping box.
#[derive(Debug, Default, Clone)]
pub(crate) struct Grouping {
    pub key: Vec<BoxScalarExpr>,
}

impl From<Grouping> for BoxType {
    fn from(grouping: Grouping) -> Self {
        BoxType::Grouping(grouping)
    }
}

/// The content of a OuterJoin box.
#[derive(Debug, Clone, Default)]
pub(crate) struct OuterJoin {
    /// The predices in the ON clause of the outer join.
    pub predicates: Vec<BoxScalarExpr>,
}

impl From<OuterJoin> for BoxType {
    fn from(outer_join: OuterJoin) -> Self {
        BoxType::OuterJoin(outer_join)
    }
}

/// The content of a Select box.
#[derive(Debug, Clone, Default)]
pub(crate) struct Select {
    /// The list of predicates applied by the box.
    pub predicates: Vec<BoxScalarExpr>,
    /// An optional ORDER BY key
    pub order_key: Option<Vec<BoxScalarExpr>>,
    /// An optional LIMIT clause
    pub limit: Option<BoxScalarExpr>,
    /// An optional OFFSET clause
    pub offset: Option<BoxScalarExpr>,
}

impl From<Select> for BoxType {
    fn from(select: Select) -> Self {
        BoxType::Select(select)
    }
}

impl Select {
    pub fn new(predicates: Vec<BoxScalarExpr>) -> Select {
        Select {
            predicates,
            order_key: None,
            limit: None,
            offset: None,
        }
    }
}

#[derive(Debug, Clone)]
pub(crate) struct CallTable {
    pub func: TableFunc,
    pub exprs: Vec<BoxScalarExpr>,
}

impl CallTable {
    pub fn new(func: TableFunc, exprs: Vec<BoxScalarExpr>) -> CallTable {
        CallTable { func, exprs }
    }
}

impl From<CallTable> for BoxType {
    fn from(table_funct: CallTable) -> Self {
        BoxType::CallTable(table_funct)
    }
}

#[derive(Debug, Clone, Default)]
pub(crate) struct Values {
    pub rows: Vec<Vec<BoxScalarExpr>>,
}

impl From<Values> for BoxType {
    fn from(values: Values) -> Self {
        BoxType::Values(values)
    }
}

impl Model {
    pub(crate) fn make_box(&mut self, box_type: BoxType) -> BoxId {
        let id = self.box_id_gen.allocate_id();
        let b = Box::new(RefCell::new(QueryBox {
            id,
            box_type,
            columns: Vec::new(),
            quantifiers: QuantifierSet::new(),
            ranging_quantifiers: QuantifierSet::new(),
            distinct: DistinctOperation::Preserve,
            attributes: Attributes::new(),
        }));
        self.boxes.insert(id, b);
        id
    }

    pub(crate) fn make_select_box(&mut self) -> BoxId {
        self.make_box(BoxType::Select(Select::default()))
    }

    /// An iterator over immutable references to the [`QueryBox`] instances in this [`Model`].
    pub(crate) fn boxes_iter(&self) -> impl Iterator<Item = BoundRef<'_, QueryBox>> {
        self.boxes.keys().map(|box_id| BoundRef {
            model: self,
            r#ref: self
                .boxes
                .get(box_id)
                .expect("a valid box identifier")
                .borrow(),
        })
    }

    /// Get an immutable reference to the box identified by `box_id` bound to this [`Model`].
    pub(crate) fn get_box(&self, box_id: BoxId) -> BoundRef<'_, QueryBox> {
        BoundRef {
            model: self,
            r#ref: self
                .boxes
                .get(&box_id)
                .expect("a valid box identifier")
                .borrow(),
        }
    }

    /// Get a mutable reference to the box identified by `box_id` bound to this [`Model`].
    pub(crate) fn get_mut_box(&mut self, box_id: BoxId) -> BoundRefMut<'_, QueryBox> {
        let model_ptr: *mut Self = self;
        unsafe {
            let reference = (*model_ptr)
                .boxes
                .get(&box_id)
                .expect("a valid box identifier")
                .borrow_mut();

            BoundRefMut {
                model: &mut *model_ptr,
                r#ref: reference,
            }
        }
    }

    /// Create a new quantifier and adds it to the parent box
    pub(crate) fn make_quantifier(
        &mut self,
        quantifier_type: QuantifierType,
        input_box: BoxId,
        parent_box: BoxId,
    ) -> QuantifierId {
        let id = self.quantifier_id_gen.allocate_id();
        let q = Box::new(RefCell::new(Quantifier {
            id,
            quantifier_type,
            input_box,
            parent_box,
            alias: None,
        }));
        self.quantifiers.insert(id, q);
        self.get_mut_box(parent_box).quantifiers.insert(id);
        self.get_mut_box(input_box).ranging_quantifiers.insert(id);
        id
    }

    /// Get an immutable reference to the box identified by `box_id` bound to this [`Model`].
    pub(crate) fn get_quantifier<'a>(
        &'a self,
        quantifier_id: QuantifierId,
    ) -> BoundRef<'a, Quantifier> {
        BoundRef {
            model: self,
            r#ref: self
                .quantifiers
                .get(&quantifier_id)
                .expect("a valid quantifier identifier")
                .borrow(),
        }
    }

    /// Get a mutable reference to the box identified by `box_id` bound to this [`Model`].
    pub(crate) fn get_mut_quantifier<'a>(
        &'a mut self,
        quantifier_id: QuantifierId,
    ) -> BoundRefMut<'a, Quantifier> {
        let model_ptr: *mut Self = self;
        unsafe {
            let reference = (*model_ptr)
                .quantifiers
                .get(&quantifier_id)
                .expect("a valid quantifier identifier")
                .borrow_mut();

            BoundRefMut {
                model: &mut *model_ptr,
                r#ref: reference,
            }
        }
    }

    /// Traverse the entire graph using depth-first traversal.
    ///
    /// The function `pre` runs on a parent [`QueryBox`] before it runs on any
    /// of its children.
    /// The function `post` runs on all children [`QueryBox`]es before it runs
    /// on a parent.
    pub(crate) fn try_visit_pre_post<'a, F, G, E>(
        &'a self,
        pre: &mut F,
        post: &mut G,
    ) -> Result<(), E>
    where
        F: FnMut(&Model, &BoxId) -> Result<(), E>,
        G: FnMut(&Model, &BoxId) -> Result<(), E>,
    {
        self.try_visit_pre_post_descendants(pre, post, self.top_box)
    }

    /// Traverse a subgraph using depth-first traversal starting at `root`.
    ///
    /// The function `pre` runs on a parent [`QueryBox`] before it runs on any
    /// of its children.
    /// The function `post` runs on all children [`QueryBox`]es before it runs
    /// on a parent.
    pub(crate) fn try_visit_pre_post_descendants<'a, F, G, E>(
        &'a self,
        pre: &mut F,
        post: &mut G,
        root: BoxId,
    ) -> Result<(), E>
    where
        F: FnMut(&Model, &BoxId) -> Result<(), E>,
        G: FnMut(&Model, &BoxId) -> Result<(), E>,
    {
        mz_ore::graph::try_nonrecursive_dft(
            self,
            root,
            &mut |model, box_id| {
                pre(model, box_id)?;
                Ok(model
                    .get_box(*box_id)
                    .input_quantifiers()
                    .map(|q| q.input_box)
                    .collect())
            },
            post,
        )
    }

    /// Same as [`Model::try_visit_pre_post`], but permits mutating the model.
    pub(crate) fn try_visit_mut_pre_post<'a, F, G, E>(
        &'a mut self,
        pre: &mut F,
        post: &mut G,
    ) -> Result<(), E>
    where
        F: FnMut(&mut Model, &BoxId) -> Result<(), E>,
        G: FnMut(&mut Model, &BoxId) -> Result<(), E>,
    {
        self.try_visit_mut_pre_post_descendants(pre, post, self.top_box)
    }

    /// Same as [`Model::try_visit_pre_post_descendants`], but permits mutating the model.
    pub(crate) fn try_visit_mut_pre_post_descendants<'a, F, G, E>(
        &'a mut self,
        pre: &mut F,
        post: &mut G,
        root: BoxId,
    ) -> Result<(), E>
    where
        F: FnMut(&mut Model, &BoxId) -> Result<(), E>,
        G: FnMut(&mut Model, &BoxId) -> Result<(), E>,
    {
        mz_ore::graph::try_nonrecursive_dft_mut(
            self,
            root,
            &mut |model, box_id| {
                pre(model, box_id)?;
                Ok(model
                    .get_box(*box_id)
                    .input_quantifiers()
                    .map(|q| q.input_box)
                    .collect())
            },
            post,
        )
    }

    /// Removes unreferenced objects from the model.
    ///
    /// May be invoked several times during query rewrites.
    pub(crate) fn garbage_collect(&mut self) {
        let mut visited_boxes = HashSet::new();
        let mut visited_quantifiers: HashSet<QuantifierId> = HashSet::new();

        let _ = self.try_visit_pre_post(
            &mut |m, box_id| -> Result<(), ()> {
                visited_boxes.insert(*box_id);
                let b = m.get_box(*box_id);
                visited_quantifiers.extend(b.input_quantifiers().map(|q| q.id));
                Ok(())
            },
            &mut |_, _| Ok(()),
        );
        self.boxes.retain(|b, _| visited_boxes.contains(b));
        self.quantifiers
            .retain(|q, _| visited_quantifiers.contains(q));
    }

    /// Renumbers all the boxes and quantifiers in the model starting from 0.
    ///
    /// Intended to be called after [Model::garbage_collect].
    ///
    /// Renumbering the model does not save memory or improve the performance of
    /// traversing the model, but it does make the Dot graph easier to parse.
    pub(crate) fn update_ids(&mut self) {
        // Reset the id generators.
        self.box_id_gen = Default::default();
        self.quantifier_id_gen = Default::default();

        // Figure out new ids for each quantifier and box.
        let updated_quantifier_ids = self
            .quantifiers
            .keys()
            .sorted()
            .map(|q_id| (*q_id, self.quantifier_id_gen.allocate_id()))
            .collect::<HashMap<_, _>>();
        let updated_box_ids = self
            .boxes
            .keys()
            .sorted()
            .map(|box_id| (*box_id, self.box_id_gen.allocate_id()))
            .collect::<HashMap<_, _>>();

        // Change all ids to their new versions.
        self.quantifiers = self
            .quantifiers
            .drain()
            .map(|(q_id, q)| {
                let new_id = updated_quantifier_ids[&q_id];
                let mut b_q = q.borrow_mut();
                b_q.id = new_id;
                b_q.input_box = updated_box_ids[&b_q.input_box];
                b_q.parent_box = updated_box_ids[&b_q.parent_box];
                drop(b_q);
                (new_id, q)
            })
            .collect();
        self.boxes = self
            .boxes
            .drain()
            .map(|(box_id, b)| {
                let new_id = updated_box_ids[&box_id];
                let mut b_b = b.borrow_mut();
                b_b.id = new_id;
                b_b.quantifiers = b_b
                    .quantifiers
                    .iter()
                    .map(|q_id| updated_quantifier_ids[q_id])
                    .collect();
                b_b.ranging_quantifiers = b_b
                    .ranging_quantifiers
                    .iter()
                    .map(|q_id| updated_quantifier_ids[q_id])
                    .collect();
                b_b.update_column_quantifiers(&updated_quantifier_ids);
                drop(b_b);
                (new_id, b)
            })
            .collect();
        self.top_box = *updated_box_ids.get(&self.top_box).unwrap();
    }
}

impl QueryBox {
    /// Append the given expression as a new column without an explicit alias in
    /// the projection of the box.
    pub fn add_column(&mut self, expr: BoxScalarExpr) -> usize {
        let position = self.columns.len();
        self.columns.push(Column { expr, alias: None });
        position
    }

    /// Append the given expression as a new column in the projection of the box
    /// if there isn't already a column with the same expression. Returns the
    /// position of the first column in the projection with the same expression.
    pub fn add_column_if_not_exists(&mut self, expr: BoxScalarExpr) -> usize {
        if let Some(position) = self.columns.iter().position(|c| c.expr == expr) {
            position
        } else {
            self.add_column(expr)
        }
    }

    /// Returns a vector of [`ColumnReference`] if all column expressions projected
    /// by this [`QueryBox`] of that form.
    pub fn columns_as_refs(&self) -> Option<Vec<&ColumnReference>> {
        self.columns
            .iter()
            .map(|c| match &c.expr {
                BoxScalarExpr::ColumnReference(cr) => Some(cr),
                _ => None,
            })
            .collect::<Option<Vec<_>>>()
    }

    /// Visit all the expressions in this query box.
    pub fn visit_expressions<F, E>(&self, f: &mut F) -> Result<(), E>
    where
        F: FnMut(&BoxScalarExpr) -> Result<(), E>,
    {
        for c in self.columns.iter() {
            f(&c.expr)?;
        }
        match &self.box_type {
            BoxType::Select(select) => {
                for p in select.predicates.iter() {
                    f(p)?;
                }
                if let Some(order_key) = &select.order_key {
                    for p in order_key.iter() {
                        f(p)?;
                    }
                }
                if let Some(limit) = &select.limit {
                    f(limit)?;
                }
                if let Some(offset) = &select.offset {
                    f(offset)?;
                }
            }
            BoxType::OuterJoin(outer_join) => {
                for p in outer_join.predicates.iter() {
                    f(p)?;
                }
            }
            BoxType::Grouping(grouping) => {
                for p in grouping.key.iter() {
                    f(p)?;
                }
            }
            BoxType::Values(values) => {
                for row in values.rows.iter() {
                    for value in row.iter() {
                        f(value)?;
                    }
                }
            }
            BoxType::CallTable(table_function) => {
                for p in table_function.exprs.iter() {
                    f(p)?;
                }
            }
            BoxType::Except | BoxType::Union | BoxType::Intersect | BoxType::Get(_) => {}
        }
        Ok(())
    }

    /// Mutably visit all the expressions in this query box.
    pub fn visit_expressions_mut<F, E>(&mut self, f: &mut F) -> Result<(), E>
    where
        F: FnMut(&mut BoxScalarExpr) -> Result<(), E>,
    {
        for c in self.columns.iter_mut() {
            f(&mut c.expr)?;
        }
        match &mut self.box_type {
            BoxType::Select(select) => {
                for p in select.predicates.iter_mut() {
                    f(p)?;
                }
                if let Some(order_key) = &mut select.order_key {
                    for p in order_key.iter_mut() {
                        f(p)?;
                    }
                }
                if let Some(limit) = &mut select.limit {
                    f(limit)?;
                }
                if let Some(offset) = &mut select.offset {
                    f(offset)?;
                }
            }
            BoxType::OuterJoin(outer_join) => {
                for p in outer_join.predicates.iter_mut() {
                    f(p)?;
                }
            }
            BoxType::Grouping(grouping) => {
                for p in grouping.key.iter_mut() {
                    f(p)?;
                }
            }
            BoxType::Values(values) => {
                for row in values.rows.iter_mut() {
                    for value in row.iter_mut() {
                        f(value)?;
                    }
                }
            }
            BoxType::CallTable(table_function) => {
                for p in table_function.exprs.iter_mut() {
                    f(p)?;
                }
            }
            BoxType::Except | BoxType::Union | BoxType::Intersect | BoxType::Get(_) => {}
        }
        Ok(())
    }

    pub fn is_select(&self) -> bool {
        matches!(self.box_type, BoxType::Select(_))
    }

    /// Correlation information of the quantifiers in this box. Returns a map
    /// containing, for each quantifier, the column references from sibling
    /// quantifiers they are correlated with.
    fn correlation_info(&self, model: &Model) -> BTreeMap<QuantifierId, HashSet<ColumnReference>> {
        let mut correlation_info = BTreeMap::new();
        for q_id in self.quantifiers.iter() {
            // collect the column references from the current context within
            // the subgraph under the current quantifier
            let mut column_refs = HashSet::new();
            let mut f = |m: &Model, box_id: &BoxId| -> Result<(), ()> {
                let inner_box = m.get_box(*box_id);
                inner_box.visit_expressions(&mut |expr: &BoxScalarExpr| -> Result<(), ()> {
                    expr.collect_column_references_from_context(
                        &self.quantifiers,
                        &mut column_refs,
                    );
                    Ok(())
                })
            };
            let q = model.get_quantifier(*q_id);
            model
                .try_visit_pre_post_descendants(&mut f, &mut |_, _| Ok(()), q.input_box)
                .unwrap();
            if !column_refs.is_empty() {
                correlation_info.insert(*q_id, column_refs);
            }
        }
        correlation_info
    }

    /// For every expression in this box, update the quantifier ids of every
    /// referenced column.
    ///
    /// `updated_quantifier_ids` should be a map of the old [QuantifierId] to
    /// the new one.
    pub fn update_column_quantifiers(
        &mut self,
        updated_quantifier_ids: &HashMap<QuantifierId, QuantifierId>,
    ) {
        // TODO: handle errors.
        self.visit_expressions_mut(&mut |expr: &mut BoxScalarExpr| -> Result<(), ()> {
            expr.visit_mut_post(&mut |expr| {
                if let BoxScalarExpr::ColumnReference(c) = expr {
                    if let Some(new_quantifier) = updated_quantifier_ids.get(&c.quantifier_id) {
                        c.quantifier_id = *new_quantifier;
                    }
                }
            });
            Ok(())
        })
        .unwrap();
    }
}

/// [`Model`]-dependent methods.
///
/// Publicly visible delegates to these methods are defined for
/// `BoundRef<'_, QueryBox>` and `BoundRefMut<'_, QueryBox>`.
impl QueryBox {
    /// Resolve the input quantifiers of this box as an iterator of immutable
    /// bound references.
    fn input_quantifiers<'a>(
        &'a self,
        model: &'a Model,
    ) -> impl DoubleEndedIterator<Item = BoundRef<'a, Quantifier>> {
        self.quantifiers
            .iter()
            .map(|q_id| model.get_quantifier(*q_id))
    }

    /// Resolve the quantifiers ranging over this box as an iterator of immutable
    /// bound references.
    fn ranging_quantifiers<'a>(
        &'a self,
        model: &'a Model,
    ) -> impl DoubleEndedIterator<Item = BoundRef<'a, Quantifier>> {
        self.ranging_quantifiers
            .iter()
            .map(|q_id| model.get_quantifier(*q_id))
    }
}

/// Immutable [`QueryBox`] methods that depend on their enclosing [`Model`].
impl<'a> BoundRef<'a, QueryBox> {
    /// Delegate to `QueryBox::input_quantifiers` with the enclosing model.
    pub fn input_quantifiers(&self) -> impl DoubleEndedIterator<Item = BoundRef<'_, Quantifier>> {
        self.deref().input_quantifiers(self.model)
    }

    /// Delegate to `QueryBox::ranging_quantifiers` with the enclosing model.
    pub fn ranging_quantifiers(&self) -> impl DoubleEndedIterator<Item = BoundRef<'_, Quantifier>> {
        self.deref().ranging_quantifiers(self.model)
    }

    pub fn correlation_info(&self) -> BTreeMap<QuantifierId, HashSet<ColumnReference>> {
        self.deref().correlation_info(self.model)
    }
}

/// Mutable [`QueryBox`] methods that depend on their enclosing [`Model`].
impl<'a> BoundRefMut<'a, QueryBox> {
    /// Add all columns from the non-subquery input quantifiers of the box to the
    /// projection of the box.
    pub fn add_all_input_columns(&mut self) {
        let mut all_input_columns = vec![];
        for quantifier_id in self.quantifiers.iter() {
            let q = self.model.get_quantifier(*quantifier_id);
            if !q.quantifier_type.is_subquery() {
                let input_box = self.model.get_box(q.input_box);
                for (position, c) in input_box.columns.iter().enumerate() {
                    let expr = BoxScalarExpr::ColumnReference(ColumnReference {
                        quantifier_id: *quantifier_id,
                        position,
                    });
                    all_input_columns.push(Column {
                        expr,
                        alias: c.alias.clone(),
                    });
                }
            }
        }
        self.columns.append(&mut all_input_columns);
    }

    /// Delegate to `QueryBox::input_quantifiers` with the enclosing model.
    #[allow(dead_code)]
    pub fn input_quantifiers(&self) -> impl Iterator<Item = BoundRef<'_, Quantifier>> {
        self.deref().input_quantifiers(self.model)
    }

    #[allow(dead_code)]
    /// Delegate to `QueryBox::ranging_quantifiers` with the enclosing model.
    pub fn ranging_quantifiers(&self) -> impl Iterator<Item = BoundRef<'_, Quantifier>> {
        self.deref().ranging_quantifiers(self.model)
    }
}

/// Immutable [`Quantifier`] methods that depend on their enclosing [`Model`].
#[allow(dead_code)]
impl<'a> BoundRef<'a, Quantifier> {
    /// Resolve a bound reference to the input box of this quantifier.
    pub fn input_box(&'a self) -> BoundRef<'a, QueryBox> {
        self.model.get_box(self.input_box)
    }

    /// Resolve a bound reference to the parent box of this quantifier.
    pub fn parent_box(&self) -> BoundRef<'_, QueryBox> {
        self.model.get_box(self.parent_box)
    }

    /// The arity of the quantifier from the perspective of the parent box.
    ///
    /// Note that this is distinct from the arity of the input box of the
    /// quantifier. For example, an existential subquery may have any number of
    /// input columns, but its output is always a single boolean not null
    /// column.
    pub fn output_arity(&self) -> usize {
        if self.quantifier_type.is_subquery() {
            1
        } else {
            self.model.get_box(self.input_box).columns.len()
        }
    }
}

/// Mutable [`Quantifier`] methods that depend on their enclosing [`Model`].
#[allow(dead_code)]
impl<'a> BoundRefMut<'a, Quantifier> {
    /// Resolve a bound reference to the input box of this quantifier.
    pub fn input_box(&self) -> BoundRef<'_, QueryBox> {
        self.model.get_box(self.input_box)
    }

    /// Resolve a bound reference to the input box of this quantifier.
    pub fn input_box_mut(&mut self) -> BoundRefMut<'_, QueryBox> {
        self.model.get_mut_box(self.input_box)
    }

    /// Resolve a bound reference to the parent box of this quantifier.
    pub fn parent_box(&self) -> BoundRef<'_, QueryBox> {
        self.model.get_box(self.parent_box)
    }

    /// Resolve a bound reference to the parent box of this quantifier.
    pub fn parent_box_mut(&mut self) -> BoundRefMut<'_, QueryBox> {
        self.model.get_mut_box(self.parent_box)
    }
}

impl BoxType {
    pub fn get_box_type_str(&self) -> &'static str {
        match self {
            BoxType::Except => "Except",
            BoxType::Get(..) => "Get",
            BoxType::Grouping(..) => "Grouping",
            BoxType::Intersect => "Intersect",
            BoxType::OuterJoin(..) => "OuterJoin",
            BoxType::Select(..) => "Select",
            BoxType::CallTable(..) => "CallTable",
            BoxType::Union => "Union",
            BoxType::Values(..) => "Values",
        }
    }
}

impl QuantifierType {
    /// A bitmask that matches the discriminant of a subquery [`QuantifierType`].
    pub const SUBQUERY: QuantifierType = Self::ALL.union(Self::EXISTENTIAL).union(Self::SCALAR);

    pub fn is_subquery(&self) -> bool {
        Self::SUBQUERY.intersects(*self)
    }
}

impl fmt::Display for QuantifierType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match *self {
            QuantifierType::FOREACH => write!(f, "F"),
            QuantifierType::PRESERVED_FOREACH => write!(f, "P"),
            QuantifierType::EXISTENTIAL => write!(f, "E"),
            QuantifierType::ALL => write!(f, "A"),
            QuantifierType::SCALAR => write!(f, "S"),
            _ => write!(f, "U"),
        }
    }
}

/// Exposes the internals of [`Model`]. Only to be used by tests.
#[cfg(test)]
pub(crate) mod model_test_util {
    use crate::query_model::model::Quantifier;
    use crate::query_model::Model;
    use std::cell::RefCell;

    impl Model {
        /// Return an iterator over all quantifiers in the model
        pub(crate) fn quantifiers(&self) -> impl Iterator<Item = &Box<RefCell<Quantifier>>> {
            self.quantifiers.values()
        }
    }
}