This repository was archived by the owner on Sep 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 619
/
Copy pathoperators.cpp
1222 lines (1113 loc) · 45.9 KB
/
operators.cpp
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
997
998
999
1000
//===----------------------------------------------------------------------===//
//
// Peloton
//
// operators.cpp
//
// Identification: src/optimizer/operators.cpp
//
// Copyright (c) 2015-16, Carnegie Mellon University Database Group
//
//===----------------------------------------------------------------------===//
#include "optimizer/operators.h"
#include "optimizer/operator_visitor.h"
#include "expression/expression_util.h"
namespace peloton {
namespace optimizer {
//===--------------------------------------------------------------------===//
// Leaf
//===--------------------------------------------------------------------===//
Operator LeafOperator::make(GroupID group) {
LeafOperator *op = new LeafOperator;
op->origin_group = group;
return Operator(op);
}
//===--------------------------------------------------------------------===//
// Get
//===--------------------------------------------------------------------===//
Operator LogicalGet::make(oid_t get_id,
std::vector<AnnotatedExpression> predicates,
std::shared_ptr<catalog::TableCatalogEntry> table,
std::string alias, bool update) {
LogicalGet *get = new LogicalGet;
get->table = table;
get->table_alias = alias;
get->predicates = std::move(predicates);
get->is_for_update = update;
get->get_id = get_id;
util::to_lower_string(get->table_alias);
return Operator(get);
}
hash_t LogicalGet::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&get_id));
for (auto &pred : predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
bool LogicalGet::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::Get) return false;
const LogicalGet &node = *static_cast<const LogicalGet *>(&r);
if (predicates.size() != node.predicates.size()) return false;
for (size_t i = 0; i < predicates.size(); i++) {
if (!predicates[i].expr->ExactlyEquals(*node.predicates[i].expr.get()))
return false;
}
return get_id == node.get_id;
}
//===--------------------------------------------------------------------===//
// External file get
//===--------------------------------------------------------------------===//
Operator LogicalExternalFileGet::make(oid_t get_id, ExternalFileFormat format,
std::string file_name, char delimiter,
char quote, char escape) {
auto *get = new LogicalExternalFileGet();
get->get_id = get_id;
get->format = format;
get->file_name = std::move(file_name);
get->delimiter = delimiter;
get->quote = quote;
get->escape = escape;
return Operator(get);
}
bool LogicalExternalFileGet::operator==(const BaseOperatorNode &node) {
if (node.GetType() != OpType::LogicalExternalFileGet) return false;
const auto &get = *static_cast<const LogicalExternalFileGet *>(&node);
return (get_id == get.get_id && format == get.format &&
file_name == get.file_name && delimiter == get.delimiter &&
quote == get.quote && escape == get.escape);
}
hash_t LogicalExternalFileGet::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&get_id));
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&format));
hash = HashUtil::CombineHashes(
hash, HashUtil::HashBytes(file_name.data(), file_name.length()));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes(&delimiter, 1));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes("e, 1));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes(&escape, 1));
return hash;
}
//===--------------------------------------------------------------------===//
// Query derived get
//===--------------------------------------------------------------------===//
Operator LogicalQueryDerivedGet::make(
oid_t get_id, std::string &alias,
std::unordered_map<std::string,
std::shared_ptr<expression::AbstractExpression>>
alias_to_expr_map) {
LogicalQueryDerivedGet *get = new LogicalQueryDerivedGet;
get->table_alias = alias;
get->alias_to_expr_map = alias_to_expr_map;
get->get_id = get_id;
return Operator(get);
}
bool LogicalQueryDerivedGet::operator==(const BaseOperatorNode &node) {
if (node.GetType() != OpType::LogicalQueryDerivedGet) return false;
const LogicalQueryDerivedGet &r =
*static_cast<const LogicalQueryDerivedGet *>(&node);
return get_id == r.get_id;
}
hash_t LogicalQueryDerivedGet::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&get_id));
return hash;
}
//===--------------------------------------------------------------------===//
// Select
//===--------------------------------------------------------------------===//
Operator LogicalFilter::make(std::vector<AnnotatedExpression> &filter) {
LogicalFilter *select = new LogicalFilter;
select->predicates = std::move(filter);
return Operator(select);
}
hash_t LogicalFilter::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &pred : predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
bool LogicalFilter::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::LogicalFilter) return false;
const LogicalFilter &node = *static_cast<const LogicalFilter *>(&r);
if (predicates.size() != node.predicates.size()) return false;
for (size_t i = 0; i < predicates.size(); i++) {
if (!predicates[i].expr->ExactlyEquals(*node.predicates[i].expr.get()))
return false;
}
return true;
}
//===--------------------------------------------------------------------===//
// Project
//===--------------------------------------------------------------------===//
Operator LogicalProjection::make(
std::vector<std::shared_ptr<expression::AbstractExpression>> &elements) {
LogicalProjection *projection = new LogicalProjection;
projection->expressions = std::move(elements);
return Operator(projection);
}
//===--------------------------------------------------------------------===//
// DependentJoin
//===--------------------------------------------------------------------===//
Operator LogicalDependentJoin::make() {
LogicalDependentJoin *join = new LogicalDependentJoin;
join->join_predicates = {};
return Operator(join);
}
Operator LogicalDependentJoin::make(
std::vector<AnnotatedExpression> &conditions) {
LogicalDependentJoin *join = new LogicalDependentJoin;
join->join_predicates = std::move(conditions);
return Operator(join);
}
hash_t LogicalDependentJoin::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &pred : join_predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
bool LogicalDependentJoin::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::LogicalDependentJoin) return false;
const LogicalDependentJoin &node =
*static_cast<const LogicalDependentJoin *>(&r);
if (join_predicates.size() != node.join_predicates.size()) return false;
for (size_t i = 0; i < join_predicates.size(); i++) {
if (!join_predicates[i].expr->ExactlyEquals(
*node.join_predicates[i].expr.get()))
return false;
}
return true;
}
//===--------------------------------------------------------------------===//
// MarkJoin
//===--------------------------------------------------------------------===//
Operator LogicalMarkJoin::make() {
LogicalMarkJoin *join = new LogicalMarkJoin;
join->join_predicates = {};
return Operator(join);
}
Operator LogicalMarkJoin::make(std::vector<AnnotatedExpression> &conditions) {
LogicalMarkJoin *join = new LogicalMarkJoin;
join->join_predicates = std::move(conditions);
return Operator(join);
}
hash_t LogicalMarkJoin::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &pred : join_predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
bool LogicalMarkJoin::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::LogicalMarkJoin) return false;
const LogicalMarkJoin &node = *static_cast<const LogicalMarkJoin *>(&r);
if (join_predicates.size() != node.join_predicates.size()) return false;
for (size_t i = 0; i < join_predicates.size(); i++) {
if (!join_predicates[i].expr->ExactlyEquals(
*node.join_predicates[i].expr.get()))
return false;
}
return true;
}
//===--------------------------------------------------------------------===//
// SingleJoin
//===--------------------------------------------------------------------===//
Operator LogicalSingleJoin::make() {
LogicalMarkJoin *join = new LogicalMarkJoin;
join->join_predicates = {};
return Operator(join);
}
Operator LogicalSingleJoin::make(std::vector<AnnotatedExpression> &conditions) {
LogicalSingleJoin *join = new LogicalSingleJoin;
join->join_predicates = std::move(conditions);
return Operator(join);
}
hash_t LogicalSingleJoin::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &pred : join_predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
bool LogicalSingleJoin::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::LogicalSingleJoin) return false;
const LogicalSingleJoin &node = *static_cast<const LogicalSingleJoin *>(&r);
if (join_predicates.size() != node.join_predicates.size()) return false;
for (size_t i = 0; i < join_predicates.size(); i++) {
if (!join_predicates[i].expr->ExactlyEquals(
*node.join_predicates[i].expr.get()))
return false;
}
return true;
}
//===--------------------------------------------------------------------===//
// InnerJoin
//===--------------------------------------------------------------------===//
Operator LogicalInnerJoin::make() {
LogicalInnerJoin *join = new LogicalInnerJoin;
join->join_predicates = {};
return Operator(join);
}
Operator LogicalInnerJoin::make(std::vector<AnnotatedExpression> &conditions) {
LogicalInnerJoin *join = new LogicalInnerJoin;
join->join_predicates = std::move(conditions);
return Operator(join);
}
hash_t LogicalInnerJoin::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &pred : join_predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
bool LogicalInnerJoin::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::InnerJoin) return false;
const LogicalInnerJoin &node = *static_cast<const LogicalInnerJoin *>(&r);
if (join_predicates.size() != node.join_predicates.size()) return false;
for (size_t i = 0; i < join_predicates.size(); i++) {
if (!join_predicates[i].expr->ExactlyEquals(
*node.join_predicates[i].expr.get()))
return false;
}
return true;
}
//===--------------------------------------------------------------------===//
// LeftJoin
//===--------------------------------------------------------------------===//
Operator LogicalLeftJoin::make(expression::AbstractExpression *condition) {
LogicalLeftJoin *join = new LogicalLeftJoin;
join->join_predicate =
std::shared_ptr<expression::AbstractExpression>(condition);
return Operator(join);
}
//===--------------------------------------------------------------------===//
// RightJoin
//===--------------------------------------------------------------------===//
Operator LogicalRightJoin::make(expression::AbstractExpression *condition) {
LogicalRightJoin *join = new LogicalRightJoin;
join->join_predicate =
std::shared_ptr<expression::AbstractExpression>(condition);
return Operator(join);
}
//===--------------------------------------------------------------------===//
// OuterJoin
//===--------------------------------------------------------------------===//
Operator LogicalOuterJoin::make(expression::AbstractExpression *condition) {
LogicalOuterJoin *join = new LogicalOuterJoin;
join->join_predicate =
std::shared_ptr<expression::AbstractExpression>(condition);
return Operator(join);
}
//===--------------------------------------------------------------------===//
// OuterJoin
//===--------------------------------------------------------------------===//
Operator LogicalSemiJoin::make(expression::AbstractExpression *condition) {
LogicalSemiJoin *join = new LogicalSemiJoin;
join->join_predicate =
std::shared_ptr<expression::AbstractExpression>(condition);
return Operator(join);
}
//===--------------------------------------------------------------------===//
// Aggregate
//===--------------------------------------------------------------------===//
Operator LogicalAggregateAndGroupBy::make() {
LogicalAggregateAndGroupBy *group_by = new LogicalAggregateAndGroupBy;
group_by->columns = {};
return Operator(group_by);
}
Operator LogicalAggregateAndGroupBy::make(
std::vector<std::shared_ptr<expression::AbstractExpression>> &columns) {
LogicalAggregateAndGroupBy *group_by = new LogicalAggregateAndGroupBy;
group_by->columns = move(columns);
return Operator(group_by);
}
Operator LogicalAggregateAndGroupBy::make(
std::vector<std::shared_ptr<expression::AbstractExpression>> &columns,
std::vector<AnnotatedExpression> &having) {
LogicalAggregateAndGroupBy *group_by = new LogicalAggregateAndGroupBy;
group_by->columns = move(columns);
group_by->having = move(having);
return Operator(group_by);
}
bool LogicalAggregateAndGroupBy::operator==(const BaseOperatorNode &node) {
if (node.GetType() != OpType::LogicalAggregateAndGroupBy) return false;
const LogicalAggregateAndGroupBy &r =
*static_cast<const LogicalAggregateAndGroupBy *>(&node);
if (having.size() != r.having.size() || columns.size() != r.columns.size())
return false;
for (size_t i = 0; i < having.size(); i++) {
if (!having[i].expr->ExactlyEquals(*r.having[i].expr.get())) return false;
}
return expression::ExpressionUtil::EqualExpressions(columns, r.columns);
}
hash_t LogicalAggregateAndGroupBy::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &pred : having) hash = HashUtil::SumHashes(hash, pred.expr->Hash());
for (auto expr : columns) hash = HashUtil::SumHashes(hash, expr->Hash());
return hash;
}
//===--------------------------------------------------------------------===//
// Insert
//===--------------------------------------------------------------------===//
Operator LogicalInsert::make(
std::shared_ptr<catalog::TableCatalogEntry> target_table,
const std::vector<std::string> *columns,
const std::vector<std::vector<
std::unique_ptr<peloton::expression::AbstractExpression>>> *values) {
LogicalInsert *insert_op = new LogicalInsert;
insert_op->target_table = target_table;
insert_op->columns = columns;
insert_op->values = values;
return Operator(insert_op);
}
Operator LogicalInsertSelect::make(
std::shared_ptr<catalog::TableCatalogEntry> target_table) {
LogicalInsertSelect *insert_op = new LogicalInsertSelect;
insert_op->target_table = target_table;
return Operator(insert_op);
}
//===--------------------------------------------------------------------===//
// Delete
//===--------------------------------------------------------------------===//
Operator LogicalDelete::make(
std::shared_ptr<catalog::TableCatalogEntry> target_table) {
LogicalDelete *delete_op = new LogicalDelete;
delete_op->target_table = target_table;
return Operator(delete_op);
}
//===--------------------------------------------------------------------===//
// Update
//===--------------------------------------------------------------------===//
Operator LogicalUpdate::make(
std::shared_ptr<catalog::TableCatalogEntry> target_table,
const std::vector<std::unique_ptr<peloton::parser::UpdateClause>> *
updates) {
LogicalUpdate *update_op = new LogicalUpdate;
update_op->target_table = target_table;
update_op->updates = updates;
return Operator(update_op);
}
//===--------------------------------------------------------------------===//
// Distinct
//===--------------------------------------------------------------------===//
Operator LogicalDistinct::make() {
LogicalDistinct *distinct = new LogicalDistinct;
return Operator(distinct);
}
//===--------------------------------------------------------------------===//
// Limit
//===--------------------------------------------------------------------===//
Operator LogicalLimit::make(
int64_t offset, int64_t limit,
std::vector<expression::AbstractExpression *> &&sort_exprs,
std::vector<bool> &&sort_ascending) {
LogicalLimit *limit_op = new LogicalLimit;
limit_op->offset = offset;
limit_op->limit = limit;
limit_op->sort_exprs = std::move(sort_exprs);
limit_op->sort_ascending = std::move(sort_ascending);
return Operator(limit_op);
}
//===--------------------------------------------------------------------===//
// External file output
//===--------------------------------------------------------------------===//
Operator LogicalExportExternalFile::make(ExternalFileFormat format,
std::string file_name, char delimiter,
char quote, char escape) {
auto *export_op = new LogicalExportExternalFile();
export_op->format = format;
export_op->file_name = std::move(file_name);
export_op->delimiter = delimiter;
export_op->quote = quote;
export_op->escape = escape;
return Operator(export_op);
}
bool LogicalExportExternalFile::operator==(const BaseOperatorNode &node) {
if (node.GetType() != OpType::LogicalExportExternalFile) return false;
const auto &export_op =
*static_cast<const LogicalExportExternalFile *>(&node);
return (format == export_op.format && file_name == export_op.file_name &&
delimiter == export_op.delimiter && quote == export_op.quote &&
escape == export_op.escape);
}
hash_t LogicalExportExternalFile::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&format));
hash = HashUtil::CombineHashes(
hash, HashUtil::HashBytes(file_name.data(), file_name.length()));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes(&delimiter, 1));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes("e, 1));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes(&escape, 1));
return hash;
}
//===--------------------------------------------------------------------===//
// DummyScan
//===--------------------------------------------------------------------===//
Operator DummyScan::make() {
DummyScan *dummy = new DummyScan;
return Operator(dummy);
}
//===--------------------------------------------------------------------===//
// SeqScan
//===--------------------------------------------------------------------===//
Operator PhysicalSeqScan::make(
oid_t get_id, std::shared_ptr<catalog::TableCatalogEntry> table,
std::string alias, std::vector<AnnotatedExpression> predicates,
bool update) {
PELOTON_ASSERT(table != nullptr);
PhysicalSeqScan *scan = new PhysicalSeqScan;
scan->table_ = table;
scan->table_alias = alias;
scan->predicates = std::move(predicates);
scan->is_for_update = update;
scan->get_id = get_id;
return Operator(scan);
}
bool PhysicalSeqScan::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::SeqScan) return false;
const PhysicalSeqScan &node = *static_cast<const PhysicalSeqScan *>(&r);
if (predicates.size() != node.predicates.size()) return false;
for (size_t i = 0; i < predicates.size(); i++) {
if (!predicates[i].expr->ExactlyEquals(*node.predicates[i].expr.get()))
return false;
}
return get_id == node.get_id;
}
hash_t PhysicalSeqScan::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&get_id));
for (auto &pred : predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
//===--------------------------------------------------------------------===//
// IndexScan
//===--------------------------------------------------------------------===//
Operator PhysicalIndexScan::make(
oid_t get_id, std::shared_ptr<catalog::TableCatalogEntry> table,
std::string alias, std::vector<AnnotatedExpression> predicates, bool update,
oid_t index_id, std::vector<oid_t> key_column_id_list,
std::vector<ExpressionType> expr_type_list,
std::vector<type::Value> value_list) {
PELOTON_ASSERT(table != nullptr);
PhysicalIndexScan *scan = new PhysicalIndexScan;
scan->table_ = table;
scan->is_for_update = update;
scan->predicates = std::move(predicates);
scan->table_alias = std::move(alias);
scan->get_id = get_id;
scan->index_id = index_id;
scan->key_column_id_list = std::move(key_column_id_list);
scan->expr_type_list = std::move(expr_type_list);
scan->value_list = std::move(value_list);
return Operator(scan);
}
bool PhysicalIndexScan::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::IndexScan) return false;
const PhysicalIndexScan &node = *static_cast<const PhysicalIndexScan *>(&r);
// TODO: Should also check value list
if (index_id != node.index_id ||
key_column_id_list != node.key_column_id_list ||
expr_type_list != node.expr_type_list ||
predicates.size() != node.predicates.size())
return false;
for (size_t i = 0; i < predicates.size(); i++) {
if (!predicates[i].expr->ExactlyEquals(*node.predicates[i].expr.get()))
return false;
}
return get_id == node.get_id;
}
hash_t PhysicalIndexScan::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&index_id));
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&get_id));
for (auto &pred : predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
//===--------------------------------------------------------------------===//
// Physical external file scan
//===--------------------------------------------------------------------===//
Operator ExternalFileScan::make(oid_t get_id, ExternalFileFormat format,
std::string file_name, char delimiter,
char quote, char escape) {
auto *get = new ExternalFileScan();
get->get_id = get_id;
get->format = format;
get->file_name = file_name;
get->delimiter = delimiter;
get->quote = quote;
get->escape = escape;
return Operator(get);
}
bool ExternalFileScan::operator==(const BaseOperatorNode &node) {
if (node.GetType() != OpType::QueryDerivedScan) return false;
const auto &get = *static_cast<const ExternalFileScan *>(&node);
return (get_id == get.get_id && format == get.format &&
file_name == get.file_name && delimiter == get.delimiter &&
quote == get.quote && escape == get.escape);
}
hash_t ExternalFileScan::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&get_id));
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&format));
hash = HashUtil::CombineHashes(
hash, HashUtil::HashBytes(file_name.data(), file_name.length()));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes(&delimiter, 1));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes("e, 1));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes(&escape, 1));
return hash;
}
//===--------------------------------------------------------------------===//
// Query derived get
//===--------------------------------------------------------------------===//
Operator QueryDerivedScan::make(
oid_t get_id, std::string alias,
std::unordered_map<std::string,
std::shared_ptr<expression::AbstractExpression>>
alias_to_expr_map) {
QueryDerivedScan *get = new QueryDerivedScan;
get->table_alias = alias;
get->alias_to_expr_map = alias_to_expr_map;
get->get_id = get_id;
return Operator(get);
}
bool QueryDerivedScan::operator==(const BaseOperatorNode &node) {
if (node.GetType() != OpType::QueryDerivedScan) return false;
const QueryDerivedScan &r = *static_cast<const QueryDerivedScan *>(&node);
return get_id == r.get_id;
}
hash_t QueryDerivedScan::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&get_id));
return hash;
}
//===--------------------------------------------------------------------===//
// OrderBy
//===--------------------------------------------------------------------===//
Operator PhysicalOrderBy::make() {
PhysicalOrderBy *order_by = new PhysicalOrderBy;
return Operator(order_by);
}
//===--------------------------------------------------------------------===//
// PhysicalLimit
//===--------------------------------------------------------------------===//
Operator PhysicalLimit::make(
int64_t offset, int64_t limit,
std::vector<expression::AbstractExpression *> sort_exprs,
std::vector<bool> sort_ascending) {
PhysicalLimit *limit_op = new PhysicalLimit;
limit_op->offset = offset;
limit_op->limit = limit;
limit_op->sort_exprs = sort_exprs;
limit_op->sort_acsending = sort_ascending;
return Operator(limit_op);
}
//===--------------------------------------------------------------------===//
// InnerNLJoin
//===--------------------------------------------------------------------===//
Operator PhysicalInnerNLJoin::make(
std::vector<AnnotatedExpression> conditions,
std::vector<std::unique_ptr<expression::AbstractExpression>> &left_keys,
std::vector<std::unique_ptr<expression::AbstractExpression>> &right_keys) {
PhysicalInnerNLJoin *join = new PhysicalInnerNLJoin();
join->join_predicates = std::move(conditions);
join->left_keys = std::move(left_keys);
join->right_keys = std::move(right_keys);
return Operator(join);
}
hash_t PhysicalInnerNLJoin::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &expr : left_keys)
hash = HashUtil::CombineHashes(hash, expr->Hash());
for (auto &expr : right_keys)
hash = HashUtil::CombineHashes(hash, expr->Hash());
for (auto &pred : join_predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
bool PhysicalInnerNLJoin::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::InnerNLJoin) return false;
const PhysicalInnerNLJoin &node =
*static_cast<const PhysicalInnerNLJoin *>(&r);
if (join_predicates.size() != node.join_predicates.size() ||
left_keys.size() != node.left_keys.size() ||
right_keys.size() != node.right_keys.size())
return false;
for (size_t i = 0; i < left_keys.size(); i++) {
if (!left_keys[i]->ExactlyEquals(*node.left_keys[i].get())) return false;
}
for (size_t i = 0; i < right_keys.size(); i++) {
if (!right_keys[i]->ExactlyEquals(*node.right_keys[i].get())) return false;
}
for (size_t i = 0; i < join_predicates.size(); i++) {
if (!join_predicates[i].expr->ExactlyEquals(
*node.join_predicates[i].expr.get()))
return false;
}
return true;
}
//===--------------------------------------------------------------------===//
// LeftNLJoin
//===--------------------------------------------------------------------===//
Operator PhysicalLeftNLJoin::make(
std::shared_ptr<expression::AbstractExpression> join_predicate) {
PhysicalLeftNLJoin *join = new PhysicalLeftNLJoin();
join->join_predicate = join_predicate;
return Operator(join);
}
//===--------------------------------------------------------------------===//
// RightNLJoin
//===--------------------------------------------------------------------===//
Operator PhysicalRightNLJoin::make(
std::shared_ptr<expression::AbstractExpression> join_predicate) {
PhysicalRightNLJoin *join = new PhysicalRightNLJoin();
join->join_predicate = join_predicate;
return Operator(join);
}
//===--------------------------------------------------------------------===//
// OuterNLJoin
//===--------------------------------------------------------------------===//
Operator PhysicalOuterNLJoin::make(
std::shared_ptr<expression::AbstractExpression> join_predicate) {
PhysicalOuterNLJoin *join = new PhysicalOuterNLJoin();
join->join_predicate = join_predicate;
return Operator(join);
}
//===--------------------------------------------------------------------===//
// InnerHashJoin
//===--------------------------------------------------------------------===//
Operator PhysicalInnerHashJoin::make(
std::vector<AnnotatedExpression> conditions,
std::vector<std::unique_ptr<expression::AbstractExpression>> &left_keys,
std::vector<std::unique_ptr<expression::AbstractExpression>> &right_keys) {
PhysicalInnerHashJoin *join = new PhysicalInnerHashJoin();
join->join_predicates = std::move(conditions);
join->left_keys = std::move(left_keys);
join->right_keys = std::move(right_keys);
return Operator(join);
}
hash_t PhysicalInnerHashJoin::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &expr : left_keys)
hash = HashUtil::CombineHashes(hash, expr->Hash());
for (auto &expr : right_keys)
hash = HashUtil::CombineHashes(hash, expr->Hash());
for (auto &pred : join_predicates)
hash = HashUtil::CombineHashes(hash, pred.expr->Hash());
return hash;
}
bool PhysicalInnerHashJoin::operator==(const BaseOperatorNode &r) {
if (r.GetType() != OpType::InnerHashJoin) return false;
const PhysicalInnerHashJoin &node =
*static_cast<const PhysicalInnerHashJoin *>(&r);
if (join_predicates.size() != node.join_predicates.size() ||
left_keys.size() != node.left_keys.size() ||
right_keys.size() != node.right_keys.size())
return false;
for (size_t i = 0; i < left_keys.size(); i++) {
if (!left_keys[i]->ExactlyEquals(*node.left_keys[i].get())) return false;
}
for (size_t i = 0; i < right_keys.size(); i++) {
if (!right_keys[i]->ExactlyEquals(*node.right_keys[i].get())) return false;
}
for (size_t i = 0; i < join_predicates.size(); i++) {
if (!join_predicates[i].expr->ExactlyEquals(
*node.join_predicates[i].expr.get()))
return false;
}
return true;
}
//===--------------------------------------------------------------------===//
// LeftHashJoin
//===--------------------------------------------------------------------===//
Operator PhysicalLeftHashJoin::make(
std::shared_ptr<expression::AbstractExpression> join_predicate) {
PhysicalLeftHashJoin *join = new PhysicalLeftHashJoin();
join->join_predicate = join_predicate;
return Operator(join);
}
//===--------------------------------------------------------------------===//
// RightHashJoin
//===--------------------------------------------------------------------===//
Operator PhysicalRightHashJoin::make(
std::shared_ptr<expression::AbstractExpression> join_predicate) {
PhysicalRightHashJoin *join = new PhysicalRightHashJoin();
join->join_predicate = join_predicate;
return Operator(join);
}
//===--------------------------------------------------------------------===//
// OuterHashJoin
//===--------------------------------------------------------------------===//
Operator PhysicalOuterHashJoin::make(
std::shared_ptr<expression::AbstractExpression> join_predicate) {
PhysicalOuterHashJoin *join = new PhysicalOuterHashJoin();
join->join_predicate = join_predicate;
return Operator(join);
}
//===--------------------------------------------------------------------===//
// PhysicalInsert
//===--------------------------------------------------------------------===//
Operator PhysicalInsert::make(
std::shared_ptr<catalog::TableCatalogEntry> target_table,
const std::vector<std::string> *columns,
const std::vector<std::vector<
std::unique_ptr<peloton::expression::AbstractExpression>>> *values) {
PhysicalInsert *insert_op = new PhysicalInsert;
insert_op->target_table = target_table;
insert_op->columns = columns;
insert_op->values = values;
return Operator(insert_op);
}
//===--------------------------------------------------------------------===//
// PhysicalInsertSelect
//===--------------------------------------------------------------------===//
Operator PhysicalInsertSelect::make(
std::shared_ptr<catalog::TableCatalogEntry> target_table) {
PhysicalInsertSelect *insert_op = new PhysicalInsertSelect;
insert_op->target_table = target_table;
return Operator(insert_op);
}
//===--------------------------------------------------------------------===//
// PhysicalDelete
//===--------------------------------------------------------------------===//
Operator PhysicalDelete::make(
std::shared_ptr<catalog::TableCatalogEntry> target_table) {
PhysicalDelete *delete_op = new PhysicalDelete;
delete_op->target_table = target_table;
return Operator(delete_op);
}
//===--------------------------------------------------------------------===//
// PhysicalUpdate
//===--------------------------------------------------------------------===//
Operator PhysicalUpdate::make(
std::shared_ptr<catalog::TableCatalogEntry> target_table,
const std::vector<std::unique_ptr<peloton::parser::UpdateClause>> *
updates) {
PhysicalUpdate *update = new PhysicalUpdate;
update->target_table = target_table;
update->updates = updates;
return Operator(update);
}
//===--------------------------------------------------------------------===//
// PhysicalExportExternalFile
//===--------------------------------------------------------------------===//
Operator PhysicalExportExternalFile::make(ExternalFileFormat format,
std::string file_name, char delimiter,
char quote, char escape) {
auto *export_op = new PhysicalExportExternalFile();
export_op->format = format;
export_op->file_name = file_name;
export_op->delimiter = delimiter;
export_op->quote = quote;
export_op->escape = escape;
return Operator(export_op);
}
bool PhysicalExportExternalFile::operator==(const BaseOperatorNode &node) {
if (node.GetType() != OpType::ExportExternalFile) return false;
const auto &export_op =
*static_cast<const PhysicalExportExternalFile *>(&node);
return (format == export_op.format && file_name == export_op.file_name &&
delimiter == export_op.delimiter && quote == export_op.quote &&
escape == export_op.escape);
}
hash_t PhysicalExportExternalFile::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
hash = HashUtil::CombineHashes(hash, HashUtil::Hash(&format));
hash = HashUtil::CombineHashes(
hash, HashUtil::HashBytes(file_name.data(), file_name.length()));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes(&delimiter, 1));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes("e, 1));
hash = HashUtil::CombineHashes(hash, HashUtil::HashBytes(&escape, 1));
return hash;
}
//===--------------------------------------------------------------------===//
// PhysicalHashGroupBy
//===--------------------------------------------------------------------===//
Operator PhysicalHashGroupBy::make(
std::vector<std::shared_ptr<expression::AbstractExpression>> columns,
std::vector<AnnotatedExpression> having) {
PhysicalHashGroupBy *agg = new PhysicalHashGroupBy;
agg->columns = columns;
agg->having = move(having);
return Operator(agg);
}
bool PhysicalHashGroupBy::operator==(const BaseOperatorNode &node) {
if (node.GetType() != OpType::HashGroupBy) return false;
const PhysicalHashGroupBy &r =
*static_cast<const PhysicalHashGroupBy *>(&node);
if (having.size() != r.having.size() || columns.size() != r.columns.size())
return false;
for (size_t i = 0; i < having.size(); i++) {
if (!having[i].expr->ExactlyEquals(*r.having[i].expr.get())) return false;
}
return expression::ExpressionUtil::EqualExpressions(columns, r.columns);
}
hash_t PhysicalHashGroupBy::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &pred : having) hash = HashUtil::SumHashes(hash, pred.expr->Hash());
for (auto expr : columns) hash = HashUtil::SumHashes(hash, expr->Hash());
return hash;
}
//===--------------------------------------------------------------------===//
// PhysicalSortGroupBy
//===--------------------------------------------------------------------===//
Operator PhysicalSortGroupBy::make(
std::vector<std::shared_ptr<expression::AbstractExpression>> columns,
std::vector<AnnotatedExpression> having) {
PhysicalSortGroupBy *agg = new PhysicalSortGroupBy;
agg->columns = std::move(columns);
agg->having = move(having);
return Operator(agg);
}
bool PhysicalSortGroupBy::operator==(const BaseOperatorNode &node) {
if (node.GetType() != OpType::SortGroupBy) return false;
const PhysicalSortGroupBy &r =
*static_cast<const PhysicalSortGroupBy *>(&node);
if (having.size() != r.having.size() || columns.size() != r.columns.size())
return false;
for (size_t i = 0; i < having.size(); i++) {
if (!having[i].expr->ExactlyEquals(*r.having[i].expr.get())) return false;
}
return expression::ExpressionUtil::EqualExpressions(columns, r.columns);
}
hash_t PhysicalSortGroupBy::Hash() const {
hash_t hash = BaseOperatorNode::Hash();
for (auto &pred : having) hash = HashUtil::SumHashes(hash, pred.expr->Hash());
for (auto expr : columns) hash = HashUtil::SumHashes(hash, expr->Hash());
return hash;
}
//===--------------------------------------------------------------------===//
// PhysicalAggregate
//===--------------------------------------------------------------------===//
Operator PhysicalAggregate::make() {
PhysicalAggregate *agg = new PhysicalAggregate;
return Operator(agg);
}
//===--------------------------------------------------------------------===//
// Physical Hash
//===--------------------------------------------------------------------===//
Operator PhysicalDistinct::make() {
PhysicalDistinct *hash = new PhysicalDistinct;
return Operator(hash);
}
//===--------------------------------------------------------------------===//
template <typename T>
void OperatorNode<T>::Accept(OperatorVisitor *v) const {
v->Visit((const T *)this);
}
//===--------------------------------------------------------------------===//
template <>
std::string OperatorNode<LeafOperator>::name_ = "LeafOperator";