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
|
#include "catch.hpp"
#include "test_helpers.hpp"
#include "duckdb/parser/parser.hpp"
#include "duckdb/planner/logical_operator.hpp"
#include "duckdb/main/connection_manager.hpp"
#include "duckdb/parser/statement/select_statement.hpp"
#include "duckdb/parser/query_node/select_node.hpp"
#include <chrono>
#include <thread>
using namespace duckdb;
using namespace std;
TEST_CASE("Test comment in CPP API", "[api]") {
DuckDB db(nullptr);
Connection con(db);
con.EnableQueryVerification();
con.SendQuery("--ups");
//! Should not crash
REQUIRE(1);
}
TEST_CASE("Test StarExpression replace_list parameter", "[api]") {
DuckDB db(nullptr);
Connection con(db);
auto sql = "select * replace(i * $n as i) from range(1, 10) t(i)";
auto stmts = con.ExtractStatements(sql);
auto &select_stmt = stmts[0]->Cast<SelectStatement>();
auto &select_node = select_stmt.node->Cast<SelectNode>();
REQUIRE(select_node.select_list[0]->HasParameter());
}
TEST_CASE("Test using connection after database is gone", "[api]") {
auto db = make_uniq<DuckDB>(nullptr);
auto conn = make_uniq<Connection>(*db);
// check that the connection works
auto result = conn->Query("SELECT 42");
REQUIRE(CHECK_COLUMN(result, 0, {42}));
// destroy the database
db.reset();
// try to use the connection
// it still works: the database remains until all connections are destroyed
REQUIRE_NO_FAIL(conn->Query("SELECT 42"));
// now try it with an open transaction
db = make_uniq<DuckDB>(nullptr);
conn = make_uniq<Connection>(*db);
REQUIRE_NO_FAIL(conn->Query("BEGIN TRANSACTION"));
result = conn->Query("SELECT 42");
REQUIRE(CHECK_COLUMN(result, 0, {42}));
db.reset();
REQUIRE_NO_FAIL(conn->Query("SELECT 42"));
}
TEST_CASE("Test destroying connections with open transactions", "[api]") {
auto db = make_uniq<DuckDB>(nullptr);
{
Connection con(*db);
con.Query("BEGIN TRANSACTION");
con.Query("CREATE TABLE test(i INTEGER);");
}
auto conn = make_uniq<Connection>(*db);
REQUIRE_NO_FAIL(conn->Query("CREATE TABLE test(i INTEGER)"));
}
static void long_running_query(Connection *conn, bool *correct) {
*correct = true;
auto result = conn->Query("SELECT i1.i FROM integers i1, integers i2, integers i3, integers i4, integers i5, "
"integers i6, integers i7, integers i8, integers i9, integers i10,"
"integers i11, integers i12, integers i13");
// the query should fail
*correct = result->HasError();
}
TEST_CASE("Test closing database during long running query", "[api]") {
auto db = make_uniq<DuckDB>(nullptr);
auto conn = make_uniq<Connection>(*db);
// create the database
REQUIRE_NO_FAIL(conn->Query("CREATE TABLE integers(i INTEGER)"));
REQUIRE_NO_FAIL(conn->Query("INSERT INTO integers FROM range(10000)"));
conn->DisableProfiling();
// perform a long running query in the background (many cross products)
bool correct = true;
auto background_thread = thread(long_running_query, conn.get(), &correct);
// wait a little bit
std::this_thread::sleep_for(std::chrono::milliseconds(100));
// destroy the database
conn->Interrupt();
db.reset();
// wait for the thread
background_thread.join();
REQUIRE(correct);
// try to use the connection
REQUIRE_NO_FAIL(conn->Query("SELECT 42"));
}
TEST_CASE("Test closing result after database is gone", "[api]") {
auto db = make_uniq<DuckDB>(nullptr);
auto conn = make_uniq<Connection>(*db);
// check that the connection works
auto result = conn->Query("SELECT 42");
REQUIRE(CHECK_COLUMN(result, 0, {42}));
// destroy the database
db.reset();
conn.reset();
result.reset();
// now the streaming result
db = make_uniq<DuckDB>(nullptr);
conn = make_uniq<Connection>(*db);
// check that the connection works
auto streaming_result = conn->SendQuery("SELECT 42");
// destroy the database
db.reset();
conn.reset();
REQUIRE(CHECK_COLUMN(streaming_result, 0, {42}));
streaming_result.reset();
}
TEST_CASE("Test closing database with open prepared statements", "[api]") {
auto db = make_uniq<DuckDB>(nullptr);
auto conn = make_uniq<Connection>(*db);
auto p1 = conn->Prepare("CREATE TABLE a (i INTEGER)");
REQUIRE_NO_FAIL(p1->Execute());
auto p2 = conn->Prepare("INSERT INTO a VALUES (42)");
REQUIRE_NO_FAIL(p2->Execute());
db.reset();
conn.reset();
// the prepared statements are still valid
// the database is only destroyed when the prepared statements are destroyed
REQUIRE_NO_FAIL(p2->Execute());
p1.reset();
p2.reset();
}
static void parallel_query(Connection *conn, bool *correct, size_t threadnr) {
correct[threadnr] = true;
for (size_t i = 0; i < 100; i++) {
auto result = conn->Query("SELECT * FROM integers ORDER BY i");
if (!CHECK_COLUMN(result, 0, {1, 2, 3, Value()})) {
correct[threadnr] = false;
}
}
}
TEST_CASE("Test temp_directory defaults", "[api][.]") {
const char *db_paths[] = {nullptr, "", ":memory:"};
for (auto &path : db_paths) {
auto db = make_uniq<DuckDB>(path);
auto conn = make_uniq<Connection>(*db);
REQUIRE(db->instance->config.options.temporary_directory == ".tmp");
}
}
TEST_CASE("Test parallel usage of single client", "[api][.]") {
auto db = make_uniq<DuckDB>(nullptr);
auto conn = make_uniq<Connection>(*db);
REQUIRE_NO_FAIL(conn->Query("CREATE TABLE integers(i INTEGER)"));
REQUIRE_NO_FAIL(conn->Query("INSERT INTO integers VALUES (1), (2), (3), (NULL)"));
bool correct[20];
thread threads[20];
for (size_t i = 0; i < 20; i++) {
threads[i] = thread(parallel_query, conn.get(), correct, i);
}
for (size_t i = 0; i < 20; i++) {
threads[i].join();
REQUIRE(correct[i]);
}
}
static void parallel_query_with_new_connection(DuckDB *db, bool *correct, size_t threadnr) {
correct[threadnr] = true;
for (size_t i = 0; i < 100; i++) {
auto conn = make_uniq<Connection>(*db);
auto result = conn->Query("SELECT * FROM integers ORDER BY i");
if (!CHECK_COLUMN(result, 0, {1, 2, 3, Value()})) {
correct[threadnr] = false;
}
}
}
TEST_CASE("Test making and dropping connections in parallel to a single database", "[api][.]") {
auto db = make_uniq<DuckDB>(nullptr);
auto conn = make_uniq<Connection>(*db);
REQUIRE_NO_FAIL(conn->Query("CREATE TABLE integers(i INTEGER)"));
REQUIRE_NO_FAIL(conn->Query("INSERT INTO integers VALUES (1), (2), (3), (NULL)"));
bool correct[20];
thread threads[20];
for (size_t i = 0; i < 20; i++) {
threads[i] = thread(parallel_query_with_new_connection, db.get(), correct, i);
}
for (size_t i = 0; i < 100; i++) {
auto result = conn->Query("SELECT * FROM integers ORDER BY i");
REQUIRE(CHECK_COLUMN(result, 0, {1, 2, 3, Value()}));
}
for (size_t i = 0; i < 20; i++) {
threads[i].join();
REQUIRE(correct[i]);
}
auto result = conn->Query("SELECT * FROM integers ORDER BY i");
REQUIRE(CHECK_COLUMN(result, 0, {1, 2, 3, Value()}));
}
TEST_CASE("Test multiple result sets", "[api]") {
duckdb::unique_ptr<QueryResult> result;
DuckDB db(nullptr);
Connection con(db);
con.EnableQueryVerification();
con.DisableQueryVerification();
con.EnableQueryVerification();
con.ForceParallelism();
result = con.Query("SELECT 42; SELECT 84");
REQUIRE(CHECK_COLUMN(result, 0, {42}));
result = std::move(result->next);
REQUIRE(CHECK_COLUMN(result, 0, {84}));
REQUIRE(!result->next);
// also with stream api
result = con.SendQuery("SELECT 42; SELECT 84");
REQUIRE(CHECK_COLUMN(result, 0, {42}));
result = std::move(result->next);
REQUIRE(CHECK_COLUMN(result, 0, {84}));
REQUIRE(!result->next);
}
TEST_CASE("Test streaming API errors", "[api]") {
duckdb::unique_ptr<QueryResult> result, result2;
DuckDB db(nullptr);
Connection con(db);
// multiple streaming result
result = con.SendQuery("SELECT 42;");
result2 = con.SendQuery("SELECT 42;");
// "result" is invalidated
REQUIRE_THROWS(CHECK_COLUMN(result, 0, {42}));
// "result2" we can read
REQUIRE(CHECK_COLUMN(result2, 0, {42}));
// streaming result followed by non-streaming result
result = con.SendQuery("SELECT 42;");
result2 = con.Query("SELECT 42;");
// "result" is invalidated
REQUIRE_THROWS(CHECK_COLUMN(result, 0, {42}));
// "result2" we can read
REQUIRE(CHECK_COLUMN(result2, 0, {42}));
// error in binding
result = con.SendQuery("SELECT * FROM nonexistanttable");
REQUIRE(!result->ToString().empty());
REQUIRE(result->type == QueryResultType::MATERIALIZED_RESULT);
REQUIRE_FAIL(result);
// error in stream that only happens after fetching
result = con.SendQuery(
"SELECT x::INT FROM (SELECT x::VARCHAR x FROM range(10) tbl(x) UNION ALL SELECT 'hello' x) tbl(x);");
while (!result->HasError()) {
auto chunk = result->Fetch();
if (!chunk || chunk->size() == 0) {
break;
}
}
REQUIRE(!result->ToString().empty());
REQUIRE_FAIL(result);
// same query but call Materialize
result = con.SendQuery(
"SELECT x::INT FROM (SELECT x::VARCHAR x FROM range(10) tbl(x) UNION ALL SELECT 'hello' x) tbl(x);");
REQUIRE(!result->ToString().empty());
REQUIRE(result->type == QueryResultType::STREAM_RESULT);
result = ((StreamQueryResult &)*result).Materialize();
REQUIRE_FAIL(result);
// same query but call materialize after fetching
result = con.SendQuery(
"SELECT x::INT FROM (SELECT x::VARCHAR x FROM range(10) tbl(x) UNION ALL SELECT 'hello' x) tbl(x);");
while (!result->HasError()) {
auto chunk = result->Fetch();
if (!chunk || chunk->size() == 0) {
break;
}
}
REQUIRE(!result->ToString().empty());
REQUIRE(result->type == QueryResultType::STREAM_RESULT);
result = ((StreamQueryResult &)*result).Materialize();
REQUIRE_FAIL(result);
}
TEST_CASE("Test fetch API", "[api]") {
DuckDB db(nullptr);
Connection con(db);
con.EnableQueryVerification();
duckdb::unique_ptr<QueryResult> result;
// fetch from an error
result = con.Query("SELECT 'hello'::INT");
REQUIRE_THROWS(result->Fetch());
result = con.SendQuery("CREATE TABLE test (a INTEGER);");
result = con.Query("select a from test where 1 <> 1");
REQUIRE(CHECK_COLUMN(result, 0, {}));
result = con.SendQuery("INSERT INTO test VALUES (42)");
result = con.SendQuery("SELECT a from test");
REQUIRE(CHECK_COLUMN(result, 0, {42}));
auto materialized_result = con.Query("select a from test");
REQUIRE(CHECK_COLUMN(materialized_result, 0, {42}));
// override fetch result
result = con.SendQuery("SELECT a from test");
result = con.SendQuery("SELECT a from test");
result = con.SendQuery("SELECT a from test");
result = con.SendQuery("SELECT a from test");
REQUIRE(CHECK_COLUMN(result, 0, {42}));
}
TEST_CASE("Test fetch API not to completion", "[api]") {
auto db = make_uniq<DuckDB>(nullptr);
auto conn = make_uniq<Connection>(*db);
// remove connection with active stream result
auto result = conn->SendQuery("SELECT 42");
// close the connection
conn.reset();
// now try to fetch a chunk, this should not return a nullptr
auto chunk = result->Fetch();
REQUIRE(chunk);
// Only if we would call Fetch again would we Close the QueryResult
// this is testing that it can get cleaned up without this.
db.reset();
}
TEST_CASE("Test fetch API robustness", "[api]") {
auto db = make_uniq<DuckDB>(nullptr);
auto conn = make_uniq<Connection>(*db);
// remove connection with active stream result
auto result = conn->SendQuery("SELECT 42");
// close the connection
conn.reset();
// now try to fetch a chunk, this should not return a nullptr
auto chunk = result->Fetch();
REQUIRE(chunk);
// now close the entire database
conn = make_uniq<Connection>(*db);
result = conn->SendQuery("SELECT 42");
db.reset();
// fetch should not fail
chunk = result->Fetch();
REQUIRE(chunk);
// new queries on the connection should not fail either
REQUIRE_NO_FAIL(conn->SendQuery("SELECT 42"));
// override fetch result
db = make_uniq<DuckDB>(nullptr);
conn = make_uniq<Connection>(*db);
auto result1 = conn->SendQuery("SELECT 42");
auto result2 = conn->SendQuery("SELECT 84");
REQUIRE_NO_FAIL(*result1);
REQUIRE_NO_FAIL(*result2);
// result1 should be closed now
REQUIRE_THROWS(result1->Fetch());
// result2 should work
REQUIRE(result2->Fetch());
// test materialize
result1 = conn->SendQuery("SELECT 42");
REQUIRE(result1->type == QueryResultType::STREAM_RESULT);
auto materialized = ((StreamQueryResult &)*result1).Materialize();
result2 = conn->SendQuery("SELECT 84");
// we can read materialized still, even after opening a new result
REQUIRE(CHECK_COLUMN(materialized, 0, {42}));
REQUIRE(CHECK_COLUMN(result2, 0, {84}));
}
static void VerifyStreamResult(duckdb::unique_ptr<QueryResult> result) {
REQUIRE(result->types[0] == LogicalType::INTEGER);
size_t current_row = 0;
int current_expected_value = 0;
size_t expected_rows = 500 * 5;
while (true) {
auto chunk = result->Fetch();
if (!chunk || chunk->size() == 0) {
break;
}
auto col1_data = FlatVector::GetData<int>(chunk->data[0]);
for (size_t k = 0; k < chunk->size(); k++) {
if (current_row % 500 == 0) {
current_expected_value++;
}
REQUIRE(col1_data[k] == current_expected_value);
current_row++;
}
}
REQUIRE(current_row == expected_rows);
}
TEST_CASE("Test fetch API with big results", "[api][.]") {
DuckDB db(nullptr);
Connection con(db);
con.EnableQueryVerification();
// create table that consists of multiple chunks
REQUIRE_NO_FAIL(con.Query("BEGIN TRANSACTION"));
REQUIRE_NO_FAIL(con.Query("CREATE TABLE test(a INTEGER)"));
for (size_t i = 0; i < 500; i++) {
REQUIRE_NO_FAIL(con.Query("INSERT INTO test VALUES (1); INSERT INTO test VALUES (2); INSERT INTO test VALUES "
"(3); INSERT INTO test VALUES (4); INSERT INTO test VALUES (5);"));
}
REQUIRE_NO_FAIL(con.Query("COMMIT"));
// stream the results using the Fetch() API
auto result = con.SendQuery("SELECT CAST(a AS INTEGER) FROM test ORDER BY a");
VerifyStreamResult(std::move(result));
// we can also stream a materialized result
auto materialized = con.Query("SELECT CAST(a AS INTEGER) FROM test ORDER BY a");
VerifyStreamResult(std::move(materialized));
// return multiple results using the stream API
result = con.SendQuery("SELECT CAST(a AS INTEGER) FROM test ORDER BY a; SELECT CAST(a AS INTEGER) FROM test ORDER "
"BY a; SELECT CAST(a AS INTEGER) FROM test ORDER BY a;");
auto next = std::move(result->next);
while (next) {
auto nextnext = std::move(next->next);
VerifyStreamResult(std::move(nextnext));
next = std::move(nextnext);
}
VerifyStreamResult(std::move(result));
}
TEST_CASE("Test TryFlushCachingOperators interrupted ExecutePushInternal", "[api][.]") {
DuckDB db;
Connection con(db);
con.Query("create table tbl as select 100000 a from range(2) t(a);");
con.Query("pragma threads=1");
// Use PhysicalCrossProduct with a very low amount of produced tuples, this caches the result in the
// CachingOperatorState This gets flushed with FinalExecute in PipelineExecutor::TryFlushCachingOperator
auto pending_query = con.PendingQuery("select unnest(range(a.a)) from tbl a, tbl b;");
// Through `unnest(range(a.a.))` this FinalExecute multiple chunks, more than the ExecutionBudget can handle with
// PROCESS_PARTIAL
pending_query->ExecuteTask();
// query the connection as normal after
auto res = pending_query->Execute();
REQUIRE(!res->HasError());
auto &materialized_res = res->Cast<MaterializedQueryResult>();
idx_t initial_tuples = 2 * 2;
REQUIRE(materialized_res.RowCount() == initial_tuples * 100000);
for (idx_t i = 0; i < initial_tuples; i++) {
for (idx_t j = 0; j < 100000; j++) {
auto value = static_cast<idx_t>(materialized_res.GetValue<int64_t>(0, (i * 100000) + j));
REQUIRE(value == j);
}
}
}
TEST_CASE("Test streaming query during stack unwinding", "[api]") {
DuckDB db;
Connection con(db);
try {
auto result = con.SendQuery("SELECT * FROM range(1000000)");
throw std::runtime_error("hello");
} catch (...) {
}
}
TEST_CASE("Test prepare dependencies with multiple connections", "[catalog]") {
duckdb::unique_ptr<QueryResult> result;
DuckDB db(nullptr);
auto con = make_uniq<Connection>(db);
auto con2 = make_uniq<Connection>(db);
auto con3 = make_uniq<Connection>(db);
// simple prepare: begin transaction before the second client calls PREPARE
REQUIRE_NO_FAIL(con->Query("CREATE TABLE integers(i INTEGER)"));
// open a transaction in con2, this forces the prepared statement to be kept around until this transaction is closed
REQUIRE_NO_FAIL(con2->Query("BEGIN TRANSACTION"));
// we prepare a statement in con
REQUIRE_NO_FAIL(con->Query("PREPARE s1 AS SELECT * FROM integers"));
// now we drop con while the second client still has an active transaction
con.reset();
// now commit the transaction in the second client
REQUIRE_NO_FAIL(con2->Query("COMMIT"));
con = make_uniq<Connection>(db);
// three transactions
// open a transaction in con2, this forces the prepared statement to be kept around until this transaction is closed
REQUIRE_NO_FAIL(con2->Query("BEGIN TRANSACTION"));
// create a prepare, this creates a dependency from s1 -> integers
REQUIRE_NO_FAIL(con->Query("PREPARE s1 AS SELECT * FROM integers"));
// drop the client
con.reset();
// now begin a transaction in con3
REQUIRE_NO_FAIL(con3->Query("BEGIN TRANSACTION"));
// drop the table integers with cascade, this should drop s1 as well
REQUIRE_NO_FAIL(con3->Query("DROP TABLE integers CASCADE"));
REQUIRE_NO_FAIL(con2->Query("COMMIT"));
REQUIRE_NO_FAIL(con3->Query("COMMIT"));
}
TEST_CASE("Test connection API", "[api]") {
DuckDB db(nullptr);
Connection con(db);
con.EnableQueryVerification();
// extract a plan node
REQUIRE_NOTHROW(con.ExtractPlan("SELECT 42"));
// can only extract one statement at a time
REQUIRE_THROWS(con.ExtractPlan("SELECT 42; SELECT 84"));
// append to a table
con.Query("CREATE TABLE integers(i integer);");
auto table_info = con.TableInfo("integers");
// no transaction active
REQUIRE_THROWS(con.Commit());
REQUIRE_THROWS(con.Rollback());
// cannot start a transaction within a transaction
REQUIRE_NOTHROW(con.BeginTransaction());
REQUIRE_THROWS(con.BeginTransaction());
con.SetAutoCommit(false);
REQUIRE(!con.IsAutoCommit());
con.SetAutoCommit(true);
REQUIRE(con.IsAutoCommit());
}
TEST_CASE("Test parser tokenize", "[api]") {
Parser parser;
REQUIRE_NOTHROW(parser.Tokenize("SELECT * FROM table WHERE i+1=3 AND j='hello'; --tokenize example query"));
}
TEST_CASE("Test opening an invalid database file", "[api]") {
duckdb::unique_ptr<DuckDB> db;
bool success = false;
try {
db = make_uniq<DuckDB>("duckdb:data/parquet-testing/blob.parquet");
success = true;
} catch (std::exception &ex) {
REQUIRE(StringUtil::Contains(ex.what(), "DuckDB"));
}
REQUIRE(!success);
try {
db = make_uniq<DuckDB>("duckdb:data/parquet-testing/h2oai/h2oai_group_small.parquet");
success = true;
} catch (std::exception &ex) {
REQUIRE(StringUtil::Contains(ex.what(), "DuckDB"));
}
REQUIRE(!success);
}
TEST_CASE("Test large number of connections to a single database", "[api]") {
auto db = make_uniq<DuckDB>(nullptr);
auto context = make_uniq<ClientContext>((*db).instance);
auto &connection_manager = ConnectionManager::Get(*context);
duckdb::vector<duckdb::unique_ptr<Connection>> connections;
size_t createdConnections = 5000;
size_t remainingConnections = 500;
size_t toRemove = createdConnections - remainingConnections;
for (size_t i = 0; i < createdConnections; i++) {
auto conn = make_uniq<Connection>(*db);
connections.push_back(std::move(conn));
}
REQUIRE(connection_manager.GetConnectionCount() == createdConnections);
for (size_t i = 0; i < toRemove; i++) {
connections.erase(connections.begin());
}
REQUIRE(connection_manager.GetConnectionCount() == remainingConnections);
}
TEST_CASE("Issue #4583: Catch Insert/Update/Delete errors", "[api]") {
DuckDB db(nullptr);
Connection con(db);
duckdb::unique_ptr<QueryResult> result;
con.EnableQueryVerification();
REQUIRE_NO_FAIL(con.Query("CREATE TABLE t0 (c0 int);"));
REQUIRE_NO_FAIL(con.Query("INSERT INTO t0 VALUES (1);"));
result = con.SendQuery(
"INSERT INTO t0(VALUES('\\x15\\x00\\x00\\x00\\x00@\\x01\\x0A\\x27:!\\x0A\\x00\\x00x12e\"\\x00'::BLOB));");
//! Should not terminate the process
REQUIRE_FAIL(result);
result = con.SendQuery("SELECT MIN(c0) FROM t0;");
REQUIRE(CHECK_COLUMN(result, 0, {1}));
}
TEST_CASE("Issue #14130: InsertStatement::ToString causes InternalException later on", "[api][.]") {
auto db = DuckDB(nullptr);
auto conn = Connection(db);
conn.Query("CREATE TABLE foo(a int, b varchar, c int)");
auto query = "INSERT INTO Foo values (1, 'qwerty', 42)";
auto stmts = conn.ExtractStatements(query);
auto &stmt = stmts[0];
// Issue was here: calling ToString destroyed the 'alias' of the ValuesList
stmt->ToString();
// Which caused an 'InternalException: expected non-empty binding_name' here
auto prepared_stmt = conn.Prepare(std::move(stmt));
REQUIRE(!prepared_stmt->HasError());
REQUIRE_NO_FAIL(prepared_stmt->Execute());
}
TEST_CASE("Issue #6284: CachingPhysicalOperator in pull causes issues", "[api][.]") {
DBConfig config;
config.options.maximum_threads = 8;
DuckDB db(nullptr, &config);
Connection con(db);
REQUIRE_NO_FAIL(con.Query("select setseed(0.1); CREATE TABLE T0 AS SELECT DISTINCT (RANDOM()*9999999)::BIGINT "
"record_nb, 0.0 x_0, 1.0 y_0 FROM range(1000000) tbl"));
REQUIRE_NO_FAIL(con.Query("CREATE TABLE T1 AS SELECT record_nb, 0.0 x_1, 1.0 y_1 FROM T0"));
REQUIRE_NO_FAIL(con.Query("CREATE TABLE T2 AS SELECT record_nb, 0.0 x_2, 1.0 y_2 FROM T0"));
REQUIRE_NO_FAIL(con.Query("CREATE TABLE T3 AS SELECT record_nb, 0.0 x_3, 1.0 y_3 FROM T0"));
auto result = con.SendQuery(R"(
SELECT T0.record_nb,
T1.x_1 x_1,
T1.y_1 y_1,
T2.x_2 x_2,
T2.y_2 y_2,
T3.x_3 x_3,
T3.y_3 y_3
FROM T0
INNER JOIN T1 on T0.record_nb = T1.record_nb
INNER JOIN T2 on T0.record_nb = T2.record_nb
INNER JOIN T3 on T0.record_nb = T3.record_nb
)");
idx_t count = 0;
while (true) {
auto chunk = result->Fetch();
if (!chunk) {
break;
}
if (chunk->size() == 0) {
break;
}
count += chunk->size();
}
REQUIRE(951382 == count);
}
TEST_CASE("Fuzzer 50 - Alter table heap-use-after-free", "[api]") {
// FIXME: not fixed yet
return;
DuckDB db(nullptr);
Connection con(db);
con.SendQuery("CREATE TABLE t0(c0 INT);");
con.SendQuery("ALTER TABLE t0 ADD c1 TIMESTAMP_SEC;");
}
TEST_CASE("Test loading database with enable_external_access set to false", "[api]") {
DBConfig config;
config.SetOptionByName("enable_external_access", false);
auto path = TestCreatePath("external_access_test.db");
DuckDB db(path, &config);
Connection con(db);
REQUIRE_FAIL(con.Query("ATTACH 'mydb.db'"));
}
TEST_CASE("Test checkpointing initial database with enable_external_access set to false", "[api]") {
DBConfig config;
config.SetOptionByName("enable_external_access", false);
auto path = TestCreatePath("external_access_test.db");
DuckDB db(path, &config);
Connection con(db);
REQUIRE_NO_FAIL(con.Query("CREATE TABLE tbl(i INTEGER)"));
REQUIRE_NO_FAIL(con.Query("CHECKPOINT"));
}
TEST_CASE("Test insert returning in CPP API", "[api]") {
DuckDB db(nullptr);
Connection con(db);
con.Query("CREATE TABLE test(val VARCHAR);");
con.Query("INSERT INTO test(val) VALUES ('query_1')");
auto res = con.Query("INSERT INTO test(val) VALUES ('query_2') returning *");
REQUIRE(CHECK_COLUMN(res, 0, {"query_2"}));
con.Query("INSERT INTO test(val) VALUES (?);", "query_arg_1");
auto returning_args = con.Query("INSERT INTO test(val) VALUES (?) RETURNING *;", "query_arg_2");
REQUIRE(CHECK_COLUMN(returning_args, 0, {"query_arg_2"}));
con.Prepare("INSERT INTO test(val) VALUES (?);")->Execute("prepared_arg_1");
auto prepared_returning_args =
con.Prepare("INSERT INTO test(val) VALUES (?) returning *;")->Execute("prepared_arg_2");
REQUIRE(CHECK_COLUMN(prepared_returning_args, 0, {"prepared_arg_2"}));
// make sure all inserts actually inserted
auto result = con.Query("SELECT * from test;");
REQUIRE(CHECK_COLUMN(result, 0,
{"query_1", "query_2", "query_arg_1", "query_arg_2", "prepared_arg_1", "prepared_arg_2"}));
}
TEST_CASE("Test a logical execute still has types after an optimization pass", "[api]") {
DuckDB db(nullptr);
Connection con(db);
con.Query("PREPARE test AS SELECT 42::INTEGER;");
const auto query_plan = con.ExtractPlan("EXECUTE test");
REQUIRE((query_plan->type == LogicalOperatorType::LOGICAL_EXECUTE));
REQUIRE((query_plan->types.size() == 1));
REQUIRE((query_plan->types[0].id() == LogicalTypeId::INTEGER));
}
TEST_CASE("Test SqlStatement::ToString for UPDATE, INSERT, DELETE statements with alias of RETURNING clause", "[api]") {
DuckDB db(nullptr);
Connection con(db);
std::string sql;
con.Query("CREATE TABLE test(id INT);");
sql = "INSERT INTO test (id) VALUES (1) RETURNING id AS inserted";
auto stmts = con.ExtractStatements(sql);
REQUIRE(stmts[0]->ToString() == "INSERT INTO test (id ) (VALUES (1)) RETURNING id AS inserted");
sql = "UPDATE test SET id = 1 RETURNING id AS updated";
stmts = con.ExtractStatements(sql);
REQUIRE(stmts[0]->ToString() == sql);
sql = "DELETE FROM test WHERE (id = 1) RETURNING id AS deleted";
stmts = con.ExtractStatements(sql);
REQUIRE(stmts[0]->ToString() == sql);
}
TEST_CASE("Test buffer managed query result", "[api]") {
auto db = make_uniq<DuckDB>(nullptr);
auto con = make_uniq<Connection>(*db);
// Send query with in-memory result
QueryParameters parameters;
parameters.output_type = QueryResultOutputType::FORCE_MATERIALIZED;
parameters.memory_type = QueryResultMemoryType::IN_MEMORY;
auto result = con->SendQuery("SELECT 42;", parameters);
// Query result is accessible
REQUIRE_NOTHROW(result->ToString());
// Reset connection AND db
con.reset();
db.reset();
// Query result is still accessible after resetting
REQUIRE_NOTHROW(result->ToString());
// Do it again with a buffer-managed query result
db = make_uniq<DuckDB>(nullptr);
con = make_uniq<Connection>(*db);
parameters.memory_type = QueryResultMemoryType::BUFFER_MANAGED;
result = con->SendQuery("SELECT 42;", parameters);
// Query result is accessible
REQUIRE_NOTHROW(result->ToString());
// Reset connection AND db
con.reset();
db.reset();
// Query result is no longer accessible
REQUIRE_THROWS(result->ToString());
// And again with order preservation disabled
db = make_uniq<DuckDB>(nullptr);
con = make_uniq<Connection>(*db);
result = con->SendQuery("SET preserve_insertion_order=false;");
result = con->SendQuery("SELECT 42;", parameters);
// Query result is accessible
REQUIRE_NOTHROW(result->ToString());
// Reset connection AND db
con.reset();
db.reset();
// Query result is no longer accessible
REQUIRE_THROWS(result->ToString());
}
|