Merge pull request #226251 from cpcloud/fix-failing-duckdb-build

authored by Sandro and committed by GitHub 9bd464d7 8ca3f7a4

+4
+4
pkgs/development/libraries/duckdb/default.nix
··· 41 ++ lib.optionals withOdbc [ unixODBC ]; 42 43 cmakeFlags = [ 44 "-DBUILD_ICU_EXTENSION=ON" 45 "-DBUILD_PARQUET_EXTENSION=ON" 46 "-DBUILD_TPCH_EXTENSION=ON" ··· 55 "-DBUILD_TPCE=ON" 56 "-DBUILD_ODBC_DRIVER=${enableFeature withOdbc}" 57 "-DJDBC_DRIVER=${enableFeature withJdbc}" 58 # development settings 59 "-DBUILD_UNITTESTS=ON" 60 ]; ··· 86 "test/fuzzer/pedro/buffer_manager_out_of_memory.test" 87 "test/sql/storage/compression/bitpacking/bitpacking_size_calculation.test" 88 "test/sql/copy/parquet/delta_byte_array_length_mismatch.test" 89 # these are only hidden if no filters are passed in 90 "[!hide]" 91 # this test apparently never terminates
··· 41 ++ lib.optionals withOdbc [ unixODBC ]; 42 43 cmakeFlags = [ 44 + "-DBUILD_AUTOCOMPLETE_EXTENSION=ON" 45 "-DBUILD_ICU_EXTENSION=ON" 46 "-DBUILD_PARQUET_EXTENSION=ON" 47 "-DBUILD_TPCH_EXTENSION=ON" ··· 56 "-DBUILD_TPCE=ON" 57 "-DBUILD_ODBC_DRIVER=${enableFeature withOdbc}" 58 "-DJDBC_DRIVER=${enableFeature withJdbc}" 59 + ] ++ lib.optionals doInstallCheck [ 60 # development settings 61 "-DBUILD_UNITTESTS=ON" 62 ]; ··· 88 "test/fuzzer/pedro/buffer_manager_out_of_memory.test" 89 "test/sql/storage/compression/bitpacking/bitpacking_size_calculation.test" 90 "test/sql/copy/parquet/delta_byte_array_length_mismatch.test" 91 + "test/sql/function/timestamp/test_icu_strptime.test" 92 + "test/sql/timezone/test_icu_timezone.test" 93 # these are only hidden if no filters are passed in 94 "[!hide]" 95 # this test apparently never terminates