diff --git a/src/include/duckdb/common/allocator.hpp b/src/include/duckdb/common/allocator.hpp index 14c2c77c923d..caa7166b8fdc 100644 --- a/src/include/duckdb/common/allocator.hpp +++ b/src/include/duckdb/common/allocator.hpp @@ -89,7 +89,6 @@ class AllocatedData { }; class Allocator { -public: // 281TB ought to be enough for anybody static constexpr const idx_t MAXIMUM_ALLOC_SIZE = 281474976710656ULL; diff --git a/test/sql/sample/test_sample_too_big.test b/test/sql/sample/test_sample_too_big.test index c5b9351e4ea9..37a619d461db 100644 --- a/test/sql/sample/test_sample_too_big.test +++ b/test/sql/sample/test_sample_too_big.test @@ -2,6 +2,8 @@ # description: Test SAMPLE keyword # group: [sample] +require ram 16gb + statement ok CREATE TABLE t1(a INT);