forked from heavyai/heavydb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTableFunctionsTest.cpp
484 lines (452 loc) · 15.9 KB
/
TableFunctionsTest.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
/*
* Copyright 2019 OmniSci, Inc.
*
* 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 "TestHelpers.h"
#include <gtest/gtest.h>
#include "QueryEngine/ResultSet.h"
#include "QueryRunner/QueryRunner.h"
#ifndef BASE_PATH
#define BASE_PATH "./tmp"
#endif
using QR = QueryRunner::QueryRunner;
extern bool g_enable_table_functions;
namespace {
inline void run_ddl_statement(const std::string& stmt) {
QR::get()->runDDLStatement(stmt);
}
std::shared_ptr<ResultSet> run_multiple_agg(const std::string& query_str,
const ExecutorDeviceType device_type) {
return QR::get()->runSQL(query_str, device_type, false, false);
}
} // namespace
bool skip_tests(const ExecutorDeviceType device_type) {
#ifdef HAVE_CUDA
return device_type == ExecutorDeviceType::GPU && !(QR::get()->gpusPresent());
#else
return device_type == ExecutorDeviceType::GPU;
#endif
}
#define SKIP_NO_GPU() \
if (skip_tests(dt)) { \
CHECK(dt == ExecutorDeviceType::GPU); \
LOG(WARNING) << "GPU not available, skipping GPU tests"; \
continue; \
}
class TableFunctions : public ::testing::Test {
void SetUp() override {
{
run_ddl_statement("DROP TABLE IF EXISTS tf_test;");
run_ddl_statement(
"CREATE TABLE tf_test (x INT, f FLOAT, d DOUBLE, d2 DOUBLE) WITH "
"(FRAGMENT_SIZE=2);");
TestHelpers::ValuesGenerator gen("tf_test");
for (int i = 0; i < 5; i++) {
const auto insert_query = gen(i, i * 1.1, i * 1.1, 1.0 - i * 2.2);
run_multiple_agg(insert_query, ExecutorDeviceType::CPU);
}
}
{
run_ddl_statement("DROP TABLE IF EXISTS sd_test;");
run_ddl_statement(
"CREATE TABLE sd_test ("
" base TEXT ENCODING DICT(32),"
" derived TEXT,"
" SHARED DICTIONARY (derived) REFERENCES sd_test(base)"
");");
TestHelpers::ValuesGenerator gen("sd_test");
std::vector<std::pair<std::string, std::string>> v = {{"'hello'", "'world'"},
{"'foo'", "'bar'"},
{"'bar'", "'baz'"},
{"'world'", "'foo'"},
{"'baz'", "'hello'"}};
for (const auto p : v) {
const auto insert_query = gen(p.first, p.second);
run_multiple_agg(insert_query, ExecutorDeviceType::CPU);
}
}
}
void TearDown() override {
run_ddl_statement("DROP TABLE IF EXISTS tf_test;");
run_ddl_statement("DROP TABLE IF EXISTS sd_test;");
}
};
TEST_F(TableFunctions, BasicProjection) {
for (auto dt : {ExecutorDeviceType::CPU, ExecutorDeviceType::GPU}) {
SKIP_NO_GPU();
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier(cursor(SELECT d FROM tf_test), 1)) ORDER BY "
"out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier(cursor(SELECT d FROM tf_test), 2)) ORDER BY "
"out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(10));
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier(cursor(SELECT d FROM tf_test), 3)) ORDER BY "
"out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(15));
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier(cursor(SELECT d FROM tf_test), 4)) ORDER BY "
"out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(20));
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_adder(1, cursor(SELECT d, d2 FROM tf_test)));", dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_adder(4, cursor(SELECT d, d2 FROM tf_test)));", dt);
ASSERT_EQ(rows->rowCount(), size_t(20));
}
{
const auto rows = run_multiple_agg(
"SELECT out0, out1 FROM TABLE(row_addsub(1, cursor(SELECT d, d2 FROM "
"tf_test)));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
// Omit sizer (kRowMultiplier)
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_adder(cursor(SELECT d, d2 FROM tf_test)));", dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier(cursor(SELECT d FROM tf_test))) ORDER BY "
"out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
// Constant (kConstant) size tests with get_max_with_row_offset
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(get_max_with_row_offset(cursor(SELECT x FROM "
"tf_test)));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(1));
auto crt_row = rows->getNextRow(false, false);
ASSERT_EQ(TestHelpers::v<int64_t>(crt_row[0]),
static_cast<int64_t>(4)); // max value of x
}
{
// swap output column order
const auto rows = run_multiple_agg(
"SELECT out1, out0 FROM TABLE(get_max_with_row_offset(cursor(SELECT x FROM "
"tf_test)));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(1));
auto crt_row = rows->getNextRow(false, false);
ASSERT_EQ(TestHelpers::v<int64_t>(crt_row[0]),
static_cast<int64_t>(4)); // row offset of max x
ASSERT_EQ(TestHelpers::v<int64_t>(crt_row[1]),
static_cast<int64_t>(4)); // max value of x
}
// Table Function specified sizer test
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(column_list_row_sum(cursor(SELECT x, x FROM "
"tf_test)));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(2));
}
// TextEncodingDict specific tests
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier_text(cursor(SELECT base FROM sd_test),"
"1));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
std::vector<std::string> expected_result_set{"hello", "foo", "bar", "world", "baz"};
for (size_t i = 0; i < 5; i++) {
auto row = rows->getNextRow(true, false);
auto s = boost::get<std::string>(TestHelpers::v<NullableString>(row[0]));
ASSERT_EQ(s, expected_result_set[i]);
}
}
{
const auto rows = run_multiple_agg("SELECT base FROM sd_test;", dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
std::vector<std::string> expected_result_set{"hello", "foo", "bar", "world", "baz"};
for (size_t i = 0; i < 5; i++) {
auto row = rows->getNextRow(true, false);
auto s = boost::get<std::string>(TestHelpers::v<NullableString>(row[0]));
ASSERT_EQ(s, expected_result_set[i]);
}
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier_text(cursor(SELECT derived FROM sd_test),"
"1));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
std::vector<std::string> expected_result_set{"world", "bar", "baz", "foo", "hello"};
for (size_t i = 0; i < 5; i++) {
auto row = rows->getNextRow(true, false);
auto s = boost::get<std::string>(TestHelpers::v<NullableString>(row[0]));
ASSERT_EQ(s, expected_result_set[i]);
}
}
// Test boolean scalars AND return of less rows than allocated in table function
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(sort_column_limit(CURSOR(SELECT x FROM tf_test), 2, "
"true, "
"true)) ORDER by out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(2));
std::vector<int64_t> expected_result_set{0, 1};
for (size_t i = 0; i < 2; i++) {
auto row = rows->getNextRow(true, false);
auto v = TestHelpers::v<int64_t>(row[0]);
ASSERT_EQ(v, expected_result_set[i]);
}
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(sort_column_limit(CURSOR(SELECT x FROM tf_test), 3, "
"false, "
"true)) ORDER by out0 DESC;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(3));
std::vector<int64_t> expected_result_set{4, 3, 2};
for (size_t i = 0; i < 3; i++) {
auto row = rows->getNextRow(true, false);
auto v = TestHelpers::v<int64_t>(row[0]);
ASSERT_EQ(v, expected_result_set[i]);
}
}
}
}
TEST_F(TableFunctions, GroupByIn) {
for (auto dt : {ExecutorDeviceType::CPU, ExecutorDeviceType::GPU}) {
SKIP_NO_GPU();
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier(cursor(SELECT d FROM tf_test GROUP BY d), "
"1)) "
"ORDER BY out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier(cursor(SELECT d FROM tf_test GROUP BY d), "
"2)) "
"ORDER BY out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(10));
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier(cursor(SELECT d FROM tf_test GROUP BY d), "
"3)) "
"ORDER BY out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(15));
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier(cursor(SELECT d FROM tf_test GROUP BY d), "
"4)) "
"ORDER BY out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(20));
}
}
}
TEST_F(TableFunctions, GroupByInAndOut) {
auto check_result = [](const auto rows, const size_t copies) {
ASSERT_EQ(rows->rowCount(), size_t(5));
for (size_t i = 0; i < 5; i++) {
auto crt_row = rows->getNextRow(false, false);
ASSERT_EQ(TestHelpers::v<int64_t>(crt_row[1]), static_cast<int64_t>(copies));
}
};
for (auto dt : {ExecutorDeviceType::CPU, ExecutorDeviceType::GPU}) {
SKIP_NO_GPU();
{
const auto rows = run_multiple_agg(
"SELECT out0, count(*) FROM TABLE(row_copier(cursor(SELECT d FROM tf_test), "
"1)) "
"GROUP BY out0 ORDER BY out0;",
dt);
check_result(rows, 1);
}
{
const auto rows = run_multiple_agg(
"SELECT out0, count(*) FROM TABLE(row_copier(cursor(SELECT d FROM tf_test), "
"2)) "
"GROUP BY out0 ORDER BY out0;",
dt);
check_result(rows, 2);
}
{
const auto rows = run_multiple_agg(
"SELECT out0, count(*) FROM TABLE(row_copier(cursor(SELECT d FROM tf_test), "
"3)) "
"GROUP BY out0 ORDER BY out0;",
dt);
check_result(rows, 3);
}
{
const auto rows = run_multiple_agg(
"SELECT out0, count(*) FROM TABLE(row_copier(cursor(SELECT d FROM tf_test), "
"4)) "
"GROUP BY out0 ORDER BY out0;",
dt);
check_result(rows, 4);
}
// TextEncodingDict specific tests
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier_text(cursor(SELECT base FROM sd_test),"
"1)) "
"ORDER BY out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
std::vector<std::string> expected_result_set{"bar", "baz", "foo", "hello", "world"};
for (size_t i = 0; i < 5; i++) {
auto row = rows->getNextRow(true, false);
auto s = boost::get<std::string>(TestHelpers::v<NullableString>(row[0]));
ASSERT_EQ(s, expected_result_set[i]);
}
}
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(row_copier_text(cursor(SELECT derived FROM sd_test),"
"1)) "
"ORDER BY out0;",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
std::vector<std::string> expected_result_set{"bar", "baz", "foo", "hello", "world"};
for (size_t i = 0; i < 5; i++) {
auto row = rows->getNextRow(true, false);
auto s = boost::get<std::string>(TestHelpers::v<NullableString>(row[0]));
ASSERT_EQ(s, expected_result_set[i]);
}
}
}
}
TEST_F(TableFunctions, ConstantCasts) {
for (auto dt : {ExecutorDeviceType::CPU, ExecutorDeviceType::GPU}) {
SKIP_NO_GPU();
// Numeric constant to float
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(ct_binding_scalar_multiply(CURSOR(SELECT f FROM "
"tf_test), 2.2));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
// Numeric constant to double
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(ct_binding_scalar_multiply(CURSOR(SELECT d FROM "
"tf_test), 2.2));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
// Integer constant to double
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(ct_binding_scalar_multiply(CURSOR(SELECT d FROM "
"tf_test), 2));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
// Numeric (integer) constant to double
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(ct_binding_scalar_multiply(CURSOR(SELECT d FROM "
"tf_test), 2.));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
// Integer constant
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(ct_binding_scalar_multiply(CURSOR(SELECT x FROM "
"tf_test), 2));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
// Numeric constant to integer
{
const auto rows = run_multiple_agg(
"SELECT out0 FROM TABLE(ct_binding_scalar_multiply(CURSOR(SELECT x FROM "
"tf_test), 2.2));",
dt);
ASSERT_EQ(rows->rowCount(), size_t(5));
}
// Should throw: boolean constant to integer
{
EXPECT_THROW(run_multiple_agg(
"SELECT out0 FROM TABLE(ct_binding_scalar_multiply(CURSOR(SELECT "
"x FROM tf_test), true));",
dt),
std::invalid_argument);
}
}
}
TEST_F(TableFunctions, Unsupported) {
for (auto dt : {ExecutorDeviceType::CPU, ExecutorDeviceType::GPU}) {
SKIP_NO_GPU();
EXPECT_THROW(run_multiple_agg("select * from table(row_copier(cursor(SELECT d, "
"cast(x as double) FROM tf_test), 2));",
dt),
std::runtime_error);
}
}
TEST_F(TableFunctions, CallFailure) {
for (auto dt : {ExecutorDeviceType::CPU, ExecutorDeviceType::GPU}) {
SKIP_NO_GPU();
EXPECT_THROW(run_multiple_agg("SELECT out0 FROM TABLE(row_copier(cursor("
"SELECT d FROM tf_test),101));",
dt),
std::runtime_error);
// Skip this test for GPU. TODO: row_copier return value is ignored.
break;
}
}
int main(int argc, char** argv) {
TestHelpers::init_logger_stderr_only(argc, argv);
testing::InitGoogleTest(&argc, argv);
// Table function support must be enabled before initialized the query runner
// environment
g_enable_table_functions = true;
QR::init(BASE_PATH);
int err{0};
try {
err = RUN_ALL_TESTS();
} catch (const std::exception& e) {
LOG(ERROR) << e.what();
}
QR::reset();
return err;
}