-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathThetaJoinTest.cpp
601 lines (540 loc) · 29.9 KB
/
ThetaJoinTest.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
/*
* Copyright 2021 The DAPHNE Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <cstdint>
#include <iostream>
#include <tags.h>
#include <vector>
#include <runtime/local/datagen/GenGivenVals.h>
#include <runtime/local/datastructures/DataObjectFactory.h>
#include <runtime/local/datastructures/DenseMatrix.h>
#include <runtime/local/datastructures/Frame.h>
#include <runtime/local/datastructures/ValueTypeUtils.h>
// @todo: remove after fix
#include <mlir/IR/BuiltinAttributes.h>
#include <mlir/IR/Location.h>
#include <runtime/local/kernels/CheckEq.h>
#include <catch.hpp>
#include <runtime/local/kernels/ThetaJoin.h>
/// Test query Select * From R, S Where R.a = S.a
TEST_CASE("ThetaJoin: Test the equal (==) operation", TAG_KERNELS) {
/// Data generation
auto lhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto lhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {0, 11, 20, 33, 44, 55, 60, 77, 88, 99});
std::vector<Structure *> lhsCols = {lhs_col0, lhs_col1};
std::string lhsLabels[] = {"R.idx", "R.a"};
auto lhs = DataObjectFactory::create<Frame>(lhsCols, lhsLabels);
auto rhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto rhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {100, 90, 80, 70, 60, 50, 40, 30, 20, 10});
auto rhs_col2 = genGivenVals<DenseMatrix<double>>(10, {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0});
std::vector<Structure *> rhsCols = {rhs_col0, rhs_col1, rhs_col2};
std::string rhsLabels[] = {"S.idx", "S.a", "S.b"};
auto rhs = DataObjectFactory::create<Frame>(rhsCols, rhsLabels);
Frame *expectedResult;
/// create expected result set
{
std::vector<uint64_t> er_col0_val;
std::vector<int64_t> er_col1_val;
std::vector<uint64_t> er_col2_val;
std::vector<int64_t> er_col3_val;
std::vector<double> er_col4_val;
for (uint64_t outerLoop = 0; outerLoop < lhs_col0->getNumRows(); ++outerLoop) {
for (uint64_t innerLoop = 0; innerLoop < rhs_col0->getNumRows(); ++innerLoop) {
/// condition to check
if (lhs_col1->get(outerLoop, 0) == rhs_col1->get(innerLoop, 0)) {
er_col0_val.push_back(lhs_col0->get(outerLoop, 0));
er_col1_val.push_back(lhs_col1->get(outerLoop, 0));
er_col2_val.push_back(rhs_col0->get(innerLoop, 0));
er_col3_val.push_back(rhs_col1->get(innerLoop, 0));
er_col4_val.push_back(rhs_col2->get(innerLoop, 0));
}
}
}
uint64_t size = er_col0_val.size();
auto er_col0 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col0_val);
auto er_col1 = genGivenVals<DenseMatrix<int64_t>>(size, er_col1_val);
auto er_col2 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col2_val);
auto er_col3 = genGivenVals<DenseMatrix<int64_t>>(size, er_col3_val);
auto er_col4 = genGivenVals<DenseMatrix<double>>(size, er_col4_val);
std::string labels[] = {"R.idx", "R.a", "S.idx", "S.a", "S.b"};
/// create result data
expectedResult = DataObjectFactory::create<Frame>(
std::vector<Structure *>{er_col0, er_col1, er_col2, er_col3, er_col4}, labels);
/// cleanup
DataObjectFactory::destroy(er_col0, er_col1, er_col2, er_col3, er_col4);
DataObjectFactory::destroy(lhs_col0, lhs_col1, rhs_col0, rhs_col1, rhs_col2);
}
/// test execution
Frame *resultFrame = nullptr;
uint64_t equations = 1;
/// R.a == S.a
auto lhsQLabels = new const char *[10]{"R.a"};
auto rhsQLabels = new const char *[10]{"S.a"};
auto cmps = new CompareOperation[10]{CompareOperation::Equal};
thetaJoin(resultFrame, lhs, rhs, lhsQLabels, equations, rhsQLabels, equations, cmps, equations, nullptr);
delete[] lhsQLabels, delete[] rhsQLabels, delete[] cmps;
/// test if result matches expected result
CHECK(checkEq<Frame>(resultFrame, expectedResult, nullptr));
/// cleanup
DataObjectFactory::destroy(resultFrame, expectedResult, lhs, rhs);
}
/// Test query Select * From R, S Where R.a < S.a
TEST_CASE("ThetaJoin: Test the LessThan (<) operation", TAG_KERNELS) {
/// data generation
auto lhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto lhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {0, 11, 20, 33, 44, 55, 60, 77, 88, 99});
std::vector<Structure *> lhsCols = {lhs_col0, lhs_col1};
std::string lhsLabels[] = {"R.idx", "R.a"};
auto lhs = DataObjectFactory::create<Frame>(lhsCols, lhsLabels);
auto rhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto rhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {100, 90, 80, 70, 60, 50, 40, 30, 20, 10});
auto rhs_col2 = genGivenVals<DenseMatrix<double>>(10, {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0});
std::vector<Structure *> rhsCols = {rhs_col0, rhs_col1, rhs_col2};
std::string rhsLabels[] = {"S.idx", "S.a", "S.b"};
auto rhs = DataObjectFactory::create<Frame>(rhsCols, rhsLabels);
Frame *expectedResult;
/// create expected result set
{
std::vector<uint64_t> er_col0_val;
std::vector<int64_t> er_col1_val;
std::vector<uint64_t> er_col2_val;
std::vector<int64_t> er_col3_val;
std::vector<double> er_col4_val;
for (uint64_t outerLoop = 0; outerLoop < lhs_col0->getNumRows(); ++outerLoop) {
for (uint64_t innerLoop = 0; innerLoop < rhs_col0->getNumRows(); ++innerLoop) {
/// condition to check
if (lhs_col1->get(outerLoop, 0) < rhs_col1->get(innerLoop, 0)) {
er_col0_val.push_back(lhs_col0->get(outerLoop, 0));
er_col1_val.push_back(lhs_col1->get(outerLoop, 0));
er_col2_val.push_back(rhs_col0->get(innerLoop, 0));
er_col3_val.push_back(rhs_col1->get(innerLoop, 0));
er_col4_val.push_back(rhs_col2->get(innerLoop, 0));
}
}
}
uint64_t size = er_col0_val.size();
auto er_col0 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col0_val);
auto er_col1 = genGivenVals<DenseMatrix<int64_t>>(size, er_col1_val);
auto er_col2 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col2_val);
auto er_col3 = genGivenVals<DenseMatrix<int64_t>>(size, er_col3_val);
auto er_col4 = genGivenVals<DenseMatrix<double>>(size, er_col4_val);
std::string labels[] = {"R.idx", "R.a", "S.idx", "S.a", "S.b"};
/// create result data
expectedResult = DataObjectFactory::create<Frame>(
std::vector<Structure *>{er_col0, er_col1, er_col2, er_col3, er_col4}, labels);
/// cleanup
DataObjectFactory::destroy(er_col0, er_col1, er_col2, er_col3, er_col4);
DataObjectFactory::destroy(lhs_col0, lhs_col1, rhs_col0, rhs_col1, rhs_col2);
}
/// test execution
Frame *resultFrame = nullptr;
uint64_t equations = 1;
/// R.a < S.a
auto lhsQLabels = new const char *[10]{"R.a"};
auto rhsQLabels = new const char *[10]{"S.a"};
auto cmps = new CompareOperation[10]{CompareOperation::LessThan};
thetaJoin(resultFrame, lhs, rhs, lhsQLabels, equations, rhsQLabels, equations, cmps, equations, nullptr);
delete[] lhsQLabels, delete[] rhsQLabels, delete[] cmps;
/// test if result matches expected result
// CHECK(*resultFrame == *expectedResult);
CHECK(checkEq<Frame>(resultFrame, expectedResult, nullptr));
/// cleanup
DataObjectFactory::destroy(resultFrame, expectedResult, lhs, rhs);
}
/// Test query Select * From R, S Where R.a <= S.a
TEST_CASE("ThetaJoin: Test the LessEqual (<=) operation", TAG_KERNELS) {
/// data generation
auto lhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto lhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {0, 11, 20, 33, 44, 55, 60, 77, 88, 99});
std::vector<Structure *> lhsCols = {lhs_col0, lhs_col1};
std::string lhsLabels[] = {"R.idx", "R.a"};
auto lhs = DataObjectFactory::create<Frame>(lhsCols, lhsLabels);
auto rhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto rhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {100, 90, 80, 70, 60, 50, 40, 30, 20, 10});
auto rhs_col2 = genGivenVals<DenseMatrix<double>>(10, {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0});
std::vector<Structure *> rhsCols = {rhs_col0, rhs_col1, rhs_col2};
std::string rhsLabels[] = {"S.idx", "S.a", "S.b"};
auto rhs = DataObjectFactory::create<Frame>(rhsCols, rhsLabels);
Frame *expectedResult;
/// create expected result set
{
std::vector<uint64_t> er_col0_val;
std::vector<int64_t> er_col1_val;
std::vector<uint64_t> er_col2_val;
std::vector<int64_t> er_col3_val;
std::vector<double> er_col4_val;
for (uint64_t outerLoop = 0; outerLoop < lhs_col0->getNumRows(); ++outerLoop) {
for (uint64_t innerLoop = 0; innerLoop < rhs_col0->getNumRows(); ++innerLoop) {
/// condition to check
if (lhs_col1->get(outerLoop, 0) <= rhs_col1->get(innerLoop, 0)) {
er_col0_val.push_back(lhs_col0->get(outerLoop, 0));
er_col1_val.push_back(lhs_col1->get(outerLoop, 0));
er_col2_val.push_back(rhs_col0->get(innerLoop, 0));
er_col3_val.push_back(rhs_col1->get(innerLoop, 0));
er_col4_val.push_back(rhs_col2->get(innerLoop, 0));
}
}
}
uint64_t size = er_col0_val.size();
auto er_col0 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col0_val);
auto er_col1 = genGivenVals<DenseMatrix<int64_t>>(size, er_col1_val);
auto er_col2 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col2_val);
auto er_col3 = genGivenVals<DenseMatrix<int64_t>>(size, er_col3_val);
auto er_col4 = genGivenVals<DenseMatrix<double>>(size, er_col4_val);
std::string labels[] = {"R.idx", "R.a", "S.idx", "S.a", "S.b"};
/// create result data
expectedResult = DataObjectFactory::create<Frame>(
std::vector<Structure *>{er_col0, er_col1, er_col2, er_col3, er_col4}, labels);
/// cleanup
DataObjectFactory::destroy(er_col0, er_col1, er_col2, er_col3, er_col4);
DataObjectFactory::destroy(lhs_col0, lhs_col1, rhs_col0, rhs_col1, rhs_col2);
}
/// test execution
Frame *resultFrame = nullptr;
uint64_t equations = 1;
/// R.a <= S.a
auto lhsQLabels = new const char *[10]{"R.a"};
auto rhsQLabels = new const char *[10]{"S.a"};
auto cmps = new CompareOperation[10]{CompareOperation::LessEqual};
thetaJoin(resultFrame, lhs, rhs, lhsQLabels, equations, rhsQLabels, equations, cmps, equations, nullptr);
delete[] lhsQLabels, delete[] rhsQLabels, delete[] cmps;
/// test if result matches expected result
// CHECK(*resultFrame == *expectedResult);
CHECK(checkEq<Frame>(resultFrame, expectedResult, nullptr));
/// cleanup
DataObjectFactory::destroy(resultFrame, expectedResult, lhs, rhs);
}
/// Test query Select * From R, S Where R.a > S.a
TEST_CASE("ThetaJoin: Test the GreaterThan (>) operation", TAG_KERNELS) {
/// data generation
auto lhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto lhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {0, 11, 20, 33, 44, 55, 60, 77, 88, 99});
std::vector<Structure *> lhsCols = {lhs_col0, lhs_col1};
std::string lhsLabels[] = {"R.idx", "R.a"};
auto lhs = DataObjectFactory::create<Frame>(lhsCols, lhsLabels);
auto rhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto rhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {100, 90, 80, 70, 60, 50, 40, 30, 20, 10});
auto rhs_col2 = genGivenVals<DenseMatrix<double>>(10, {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0});
std::vector<Structure *> rhsCols = {rhs_col0, rhs_col1, rhs_col2};
std::string rhsLabels[] = {"S.idx", "S.a", "S.b"};
auto rhs = DataObjectFactory::create<Frame>(rhsCols, rhsLabels);
Frame *expectedResult;
/// create expected result set
{
std::vector<uint64_t> er_col0_val;
std::vector<int64_t> er_col1_val;
std::vector<uint64_t> er_col2_val;
std::vector<int64_t> er_col3_val;
std::vector<double> er_col4_val;
for (uint64_t outerLoop = 0; outerLoop < lhs_col0->getNumRows(); ++outerLoop) {
for (uint64_t innerLoop = 0; innerLoop < rhs_col0->getNumRows(); ++innerLoop) {
/// condition to check
if (lhs_col1->get(outerLoop, 0) > rhs_col1->get(innerLoop, 0)) {
er_col0_val.push_back(lhs_col0->get(outerLoop, 0));
er_col1_val.push_back(lhs_col1->get(outerLoop, 0));
er_col2_val.push_back(rhs_col0->get(innerLoop, 0));
er_col3_val.push_back(rhs_col1->get(innerLoop, 0));
er_col4_val.push_back(rhs_col2->get(innerLoop, 0));
}
}
}
uint64_t size = er_col0_val.size();
auto er_col0 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col0_val);
auto er_col1 = genGivenVals<DenseMatrix<int64_t>>(size, er_col1_val);
auto er_col2 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col2_val);
auto er_col3 = genGivenVals<DenseMatrix<int64_t>>(size, er_col3_val);
auto er_col4 = genGivenVals<DenseMatrix<double>>(size, er_col4_val);
std::string labels[] = {"R.idx", "R.a", "S.idx", "S.a", "S.b"};
/// create result data
expectedResult = DataObjectFactory::create<Frame>(
std::vector<Structure *>{er_col0, er_col1, er_col2, er_col3, er_col4}, labels);
/// cleanup
DataObjectFactory::destroy(er_col0, er_col1, er_col2, er_col3, er_col4);
DataObjectFactory::destroy(lhs_col0, lhs_col1, rhs_col0, rhs_col1, rhs_col2);
}
/// test execution
Frame *resultFrame = nullptr;
uint64_t equations = 1;
/// R.a > S.a
auto lhsQLabels = new const char *[10]{"R.a"};
auto rhsQLabels = new const char *[10]{"S.a"};
auto cmps = new CompareOperation[10]{CompareOperation::GreaterThan};
thetaJoin(resultFrame, lhs, rhs, lhsQLabels, equations, rhsQLabels, equations, cmps, equations, nullptr);
delete[] lhsQLabels, delete[] rhsQLabels, delete[] cmps;
/// test if result matches expected result
// CHECK(*resultFrame == *expectedResult);
CHECK(checkEq<Frame>(resultFrame, expectedResult, nullptr));
/// cleanup
DataObjectFactory::destroy(resultFrame, expectedResult, lhs, rhs);
}
/// Test query Select * From R, S Where R.a >( S.a
TEST_CASE("ThetaJoin: Test the GreaterEqual (>=) operation", TAG_KERNELS) {
/// data generation
auto lhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto lhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {0, 11, 20, 33, 44, 55, 60, 77, 88, 99});
std::vector<Structure *> lhsCols = {lhs_col0, lhs_col1};
std::string lhsLabels[] = {"R.idx", "R.a"};
auto lhs = DataObjectFactory::create<Frame>(lhsCols, lhsLabels);
auto rhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto rhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {100, 90, 80, 70, 60, 50, 40, 30, 20, 10});
auto rhs_col2 = genGivenVals<DenseMatrix<double>>(10, {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0});
std::vector<Structure *> rhsCols = {rhs_col0, rhs_col1, rhs_col2};
std::string rhsLabels[] = {"S.idx", "S.a", "S.b"};
auto rhs = DataObjectFactory::create<Frame>(rhsCols, rhsLabels);
Frame *expectedResult;
/// create expected result set
{
std::vector<uint64_t> er_col0_val;
std::vector<int64_t> er_col1_val;
std::vector<uint64_t> er_col2_val;
std::vector<int64_t> er_col3_val;
std::vector<double> er_col4_val;
for (uint64_t outerLoop = 0; outerLoop < lhs_col0->getNumRows(); ++outerLoop) {
for (uint64_t innerLoop = 0; innerLoop < rhs_col0->getNumRows(); ++innerLoop) {
/// condition to check
if (lhs_col1->get(outerLoop, 0) >= rhs_col1->get(innerLoop, 0)) {
er_col0_val.push_back(lhs_col0->get(outerLoop, 0));
er_col1_val.push_back(lhs_col1->get(outerLoop, 0));
er_col2_val.push_back(rhs_col0->get(innerLoop, 0));
er_col3_val.push_back(rhs_col1->get(innerLoop, 0));
er_col4_val.push_back(rhs_col2->get(innerLoop, 0));
}
}
}
uint64_t size = er_col0_val.size();
auto er_col0 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col0_val);
auto er_col1 = genGivenVals<DenseMatrix<int64_t>>(size, er_col1_val);
auto er_col2 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col2_val);
auto er_col3 = genGivenVals<DenseMatrix<int64_t>>(size, er_col3_val);
auto er_col4 = genGivenVals<DenseMatrix<double>>(size, er_col4_val);
std::string labels[] = {"R.idx", "R.a", "S.idx", "S.a", "S.b"};
/// create result data
expectedResult = DataObjectFactory::create<Frame>(
std::vector<Structure *>{er_col0, er_col1, er_col2, er_col3, er_col4}, labels);
/// cleanup
DataObjectFactory::destroy(er_col0, er_col1, er_col2, er_col3, er_col4);
DataObjectFactory::destroy(lhs_col0, lhs_col1, rhs_col0, rhs_col1, rhs_col2);
}
/// test execution
Frame *resultFrame = nullptr;
uint64_t equations = 1;
/// R.a >= S.a
auto lhsQLabels = new const char *[10]{"R.a"};
auto rhsQLabels = new const char *[10]{"S.a"};
auto cmps = new CompareOperation[10]{CompareOperation::GreaterEqual};
thetaJoin(resultFrame, lhs, rhs, lhsQLabels, equations, rhsQLabels, equations, cmps, equations, nullptr);
delete[] lhsQLabels, delete[] rhsQLabels, delete[] cmps;
/// test if result matches expected result
// CHECK(*resultFrame == *expectedResult);
CHECK(checkEq<Frame>(resultFrame, expectedResult, nullptr));
/// cleanup
DataObjectFactory::destroy(resultFrame, expectedResult, lhs, rhs);
}
/// Test query Select * From R, S Where R.a != S.a
TEST_CASE("ThetaJoin: Test the NonEqual (!=) operation", TAG_KERNELS) {
/// data generation
auto lhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto lhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {0, 11, 20, 33, 44, 55, 60, 77, 88, 99});
std::vector<Structure *> lhsCols = {lhs_col0, lhs_col1};
std::string lhsLabels[] = {"R.idx", "R.a"};
auto lhs = DataObjectFactory::create<Frame>(lhsCols, lhsLabels);
auto rhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto rhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {100, 90, 80, 70, 60, 50, 40, 30, 20, 10});
auto rhs_col2 = genGivenVals<DenseMatrix<double>>(10, {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0});
std::vector<Structure *> rhsCols = {rhs_col0, rhs_col1, rhs_col2};
std::string rhsLabels[] = {"S.idx", "S.a", "S.b"};
auto rhs = DataObjectFactory::create<Frame>(rhsCols, rhsLabels);
Frame *expectedResult;
/// create expected result set
{
std::vector<uint64_t> er_col0_val;
std::vector<int64_t> er_col1_val;
std::vector<uint64_t> er_col2_val;
std::vector<int64_t> er_col3_val;
std::vector<double> er_col4_val;
for (uint64_t outerLoop = 0; outerLoop < lhs_col0->getNumRows(); ++outerLoop) {
for (uint64_t innerLoop = 0; innerLoop < rhs_col0->getNumRows(); ++innerLoop) {
/// condition to check
if (lhs_col1->get(outerLoop, 0) != rhs_col1->get(innerLoop, 0)) {
er_col0_val.push_back(lhs_col0->get(outerLoop, 0));
er_col1_val.push_back(lhs_col1->get(outerLoop, 0));
er_col2_val.push_back(rhs_col0->get(innerLoop, 0));
er_col3_val.push_back(rhs_col1->get(innerLoop, 0));
er_col4_val.push_back(rhs_col2->get(innerLoop, 0));
}
}
}
uint64_t size = er_col0_val.size();
auto er_col0 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col0_val);
auto er_col1 = genGivenVals<DenseMatrix<int64_t>>(size, er_col1_val);
auto er_col2 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col2_val);
auto er_col3 = genGivenVals<DenseMatrix<int64_t>>(size, er_col3_val);
auto er_col4 = genGivenVals<DenseMatrix<double>>(size, er_col4_val);
std::string labels[] = {"R.idx", "R.a", "S.idx", "S.a", "S.b"};
/// create result data
expectedResult = DataObjectFactory::create<Frame>(
std::vector<Structure *>{er_col0, er_col1, er_col2, er_col3, er_col4}, labels);
/// cleanup
DataObjectFactory::destroy(er_col0, er_col1, er_col2, er_col3, er_col4);
DataObjectFactory::destroy(lhs_col0, lhs_col1, rhs_col0, rhs_col1, rhs_col2);
}
/// test execution
Frame *resultFrame = nullptr;
uint64_t equations = 1;
/// R.a != S.a
auto lhsQLabels = new const char *[10]{"R.a"};
auto rhsQLabels = new const char *[10]{"S.a"};
auto cmps = new CompareOperation[10]{CompareOperation::NotEqual};
thetaJoin(resultFrame, lhs, rhs, lhsQLabels, equations, rhsQLabels, equations, cmps, equations, nullptr);
delete[] lhsQLabels, delete[] rhsQLabels, delete[] cmps;
/// test if result matches expected result
// CHECK(*resultFrame == *expectedResult);
CHECK(checkEq<Frame>(resultFrame, expectedResult, nullptr));
/// cleanup
DataObjectFactory::destroy(resultFrame, expectedResult, lhs, rhs);
}
/// Test query Select * From R, S Where R.idx = S.idx And R.a != S.a And R.b >=
/// S.c
TEST_CASE("ThetaJoin: Test multiple conditions", TAG_KERNELS) {
/// data generation
auto lhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto lhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {0, 0, 0, 0, 0, 0, 40, 0, 0, 10});
auto lhs_col2 = genGivenVals<DenseMatrix<uint64_t>>(10, {1, 3, 5, 3, 1, 3, 5, 3, 1, 3});
std::vector<Structure *> lhsCols = {lhs_col0, lhs_col1, lhs_col2};
std::string lhsLabels[] = {"R.idx", "R.a", "R.b"};
auto lhs = DataObjectFactory::create<Frame>(lhsCols, lhsLabels);
auto rhs_col0 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto rhs_col1 = genGivenVals<DenseMatrix<int64_t>>(10, {100, 90, 80, 70, 60, 50, 40, 30, 20, 10});
auto rhs_col2 = genGivenVals<DenseMatrix<double>>(10, {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0});
auto rhs_col3 = genGivenVals<DenseMatrix<uint64_t>>(10, {2, 3, 2, 3, 2, 3, 2, 3, 2, 3});
std::vector<Structure *> rhsCols = {rhs_col0, rhs_col1, rhs_col2, rhs_col3};
std::string rhsLabels[] = {"S.idx", "S.a", "S.b", "S.c"};
auto rhs = DataObjectFactory::create<Frame>(rhsCols, rhsLabels);
Frame *expectedResult;
/// create expected result set
{
std::vector<uint64_t> er_col0_val;
std::vector<int64_t> er_col1_val;
std::vector<uint64_t> er_col2_val;
std::vector<uint64_t> er_col3_val;
std::vector<int64_t> er_col4_val;
std::vector<double> er_col5_val;
std::vector<uint64_t> er_col6_val;
for (uint64_t outerLoop = 0; outerLoop < lhs_col0->getNumRows(); ++outerLoop) {
for (uint64_t innerLoop = 0; innerLoop < rhs_col0->getNumRows(); ++innerLoop) {
/// condition to check
if (
/// R.idx == S.idx
lhs_col0->get(outerLoop, 0) == rhs_col0->get(innerLoop, 0) and
/// R.a != S.a
lhs_col1->get(outerLoop, 0) != rhs_col1->get(innerLoop, 0) and
/// R.b >= S.c
lhs_col2->get(outerLoop, 0) >= rhs_col3->get(innerLoop, 0)) {
er_col0_val.push_back(lhs_col0->get(outerLoop, 0));
er_col1_val.push_back(lhs_col1->get(outerLoop, 0));
er_col2_val.push_back(lhs_col2->get(outerLoop, 0));
er_col3_val.push_back(rhs_col0->get(innerLoop, 0));
er_col4_val.push_back(rhs_col1->get(innerLoop, 0));
er_col5_val.push_back(rhs_col2->get(innerLoop, 0));
er_col6_val.push_back(rhs_col3->get(innerLoop, 0));
}
}
}
uint64_t size = er_col0_val.size();
auto er_col0 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col0_val);
auto er_col1 = genGivenVals<DenseMatrix<int64_t>>(size, er_col1_val);
auto er_col2 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col2_val);
auto er_col3 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col3_val);
auto er_col4 = genGivenVals<DenseMatrix<int64_t>>(size, er_col4_val);
auto er_col5 = genGivenVals<DenseMatrix<double>>(size, er_col5_val);
auto er_col6 = genGivenVals<DenseMatrix<uint64_t>>(size, er_col6_val);
std::string labels[] = {"R.idx", "R.a", "R.b", "S.idx", "S.a", "S.b", "S.c"};
/// create result data
expectedResult = DataObjectFactory::create<Frame>(
std::vector<Structure *>{er_col0, er_col1, er_col2, er_col3, er_col4, er_col5, er_col6}, labels);
/// cleanup
DataObjectFactory::destroy(er_col0, er_col1, er_col2, er_col3, er_col4, er_col5, er_col6);
DataObjectFactory::destroy(lhs_col0, lhs_col1, lhs_col2, rhs_col0, rhs_col1, rhs_col2, rhs_col3);
}
/// test execution
Frame *resultFrame = nullptr;
uint64_t equations = 3;
/// R.idx == S.idx && R.a != S.b && R.b >= S.c
auto lhsQLabels = new const char *[10]{"R.idx", "R.a", "R.b"};
auto rhsQLabels = new const char *[10]{"S.idx", "S.a", "S.c"};
auto cmps =
new CompareOperation[10]{CompareOperation::Equal, CompareOperation::NotEqual, CompareOperation::GreaterEqual};
thetaJoin(resultFrame, lhs, rhs, lhsQLabels, equations, rhsQLabels, equations, cmps, equations, nullptr);
delete[] lhsQLabels, delete[] rhsQLabels, delete[] cmps;
/// test if result matches expected result
// CHECK(*resultFrame == *expectedResult);
CHECK(checkEq<Frame>(resultFrame, expectedResult, nullptr));
/// cleanup
DataObjectFactory::destroy(resultFrame, expectedResult, lhs, rhs);
}
/// Test query Select * From R, S Where R.X = S.Y with X, Y in [ui8, ui32, ui64,
/// si8, si32, si64, f32, f64]
TEST_CASE("ThetaJoin: Test unequal value types", TAG_KERNELS) {
/// data generation
auto ui8 = genGivenVals<DenseMatrix<uint8_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto ui32 = genGivenVals<DenseMatrix<uint32_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto ui64 = genGivenVals<DenseMatrix<uint64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto si8 = genGivenVals<DenseMatrix<int8_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto si32 = genGivenVals<DenseMatrix<int32_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto si64 = genGivenVals<DenseMatrix<int64_t>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto f32 = genGivenVals<DenseMatrix<float>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
auto f64 = genGivenVals<DenseMatrix<double>>(10, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
std::vector<Structure *> cols = {ui8, ui32, ui64, si8, si32, si64, f32, f64};
std::string lhsLabels[] = {"R.ui8", "R.ui32", "R.ui64", "R.si8", "R.si32", "R.si64", "R.f32", "R.f64"};
std::string rhsLabels[] = {"S.ui8", "S.ui32", "S.ui64", "S.si8", "S.si32", "S.si64", "S.f32", "S.f64"};
auto lhs = DataObjectFactory::create<Frame>(cols, lhsLabels);
auto rhs = DataObjectFactory::create<Frame>(cols, rhsLabels);
Frame *expectedResult;
/// create expected result set
{
std::string labels[] = {"R.ui8", "R.ui32", "R.ui64", "R.si8", "R.si32", "R.si64", "R.f32", "R.f64",
"S.ui8", "S.ui32", "S.ui64", "S.si8", "S.si32", "S.si64", "S.f32", "S.f64"};
/// create result data
expectedResult =
DataObjectFactory::create<Frame>(std::vector<Structure *>{ui8, ui32, ui64, si8, si32, si64, f32, f64, ui8,
ui32, ui64, si8, si32, si64, f32, f64},
labels);
}
/// test execution
Frame *resultFrame = nullptr;
uint64_t equations = 1;
std::function<void(const std::string &, const std::string)> test = [&](const std::string &lhsCol,
const std::string &rhsCol) {
auto lhsQLabels = new const char *[10]{lhsCol.c_str()};
auto rhsQLabels = new const char *[10]{rhsCol.c_str()};
auto cmps = new CompareOperation[10]{CompareOperation::Equal};
thetaJoin(resultFrame, lhs, rhs, lhsQLabels, equations, rhsQLabels, equations, cmps, equations, nullptr);
delete[] lhsQLabels, delete[] rhsQLabels, delete[] cmps;
/// test if result matches expected result
// CHECK(*resultFrame == *expectedResult);
CHECK(checkEq<Frame>(resultFrame, expectedResult, nullptr));
/// cleanup
DataObjectFactory::destroy(resultFrame);
};
std::vector<std::string> types{"ui8", "ui32", "ui64", "si8", "si32", "si64", "f32", "f64"};
/// check each possible combination
for (auto &tlhs : types) {
for (auto &trhs : types) {
test("R." + tlhs, "S." + trhs);
}
}
/// cleanup
DataObjectFactory::destroy(resultFrame, expectedResult, lhs, rhs);
}