Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save xevix/9734e9b5208003c99a2996badc15a8bd to your computer and use it in GitHub Desktop.

Select an option

Save xevix/9734e9b5208003c99a2996badc15a8bd to your computer and use it in GitHub Desktop.
duckdb_build_errors_parquet_ubuntu_aarch64.log
$ GEN=ninja make unittest_release
mkdir -p ./build/release && \
cd build/release && \
cmake -G "Ninja" -DFORCE_COLORED_OUTPUT=1 -DLOCAL_EXTENSION_REPO="" -DOVERRIDE_GIT_DESCRIBE="" -DDUCKDB_EXPLICIT_VERSION="" -DCMAKE_BUILD_TYPE=Release ../.. && \
cmake --build . --config Release
-- Found Python3: /usr/bin/python3 (found version "3.13.3") found components: Interpreter
-- The C compiler identification is GNU 14.2.0
-- The CXX compiler identification is GNU 14.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Found Git: /usr/bin/git (found version "2.48.1")
-- git hash fd3fa59072, version v1.4.0-dev1503, extension folder fd3fa59072
-- Extensions will be deployed to: /home/xevix/duckdb/build/release/repository
-- Load extension 'core_functions' from '/home/xevix/duckdb/extensions' @ fd3fa59072
-- Load extension 'parquet' from '/home/xevix/duckdb/extensions' @ fd3fa59072
-- Load extension 'jemalloc' from '/home/xevix/duckdb/extensions' @ fd3fa59072
-- Extensions linked into DuckDB: [core_functions, parquet, jemalloc]
-- Configuring done (1.2s)
-- Generating done (0.1s)
-- Build files have been written to: /home/xevix/duckdb/build/release
[1/1] repository
build/release/test/unittest
[841/3887] (21%): test/issues/general/test_17757.test
1. test/issues/general/test_17757.test
================================================================================
Wrong row count in query! (test/issues/general/test_17757.test:25)!
Wrong row count in query! (test/issues/general/test_17757.test:25)!
Expected 0 rows, but got 2 rows
================================================================================
SELECT
id,
ARRAY_AGG(child_id) FILTER ( child_id != id )
AS child_ids
FROM id_mapping
GROUP BY id
HAVING LENGTH(child_ids) != 3;
================================================================================
Expected result:
================================================================================
================================================================================
Actual result:
================================================================================
id child_ids
HUGEINT HUGEINT[]
[ Rows: 2]
677 [20677, 30677]
682 [10682, 20682]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
unittest is a Catch v2.13.7 host application.
Run with -? for options
-------------------------------------------------------------------------------
test/issues/general/test_17757.test
-------------------------------------------------------------------------------
/home/xevix/duckdb/test/sqlite/test_sqllogictest.cpp:225
...............................................................................
test/issues/general/test_17757.test:25: FAILED:
explicitly with message:
0
[2361/3887] (60%): test/sql/pragma/test_enable_http_logging.test [LOG] 2025-07-11 23:52:00.688, QueryLog, INFO, SET http_logging_output='duckdb_unittest_tempdir/66842/httplog.txt', CONNECTION, 2, 4, NULL
[3887/3887] (100%): test/sql/cte/recursive_cte_complex_pipelines.test
===============================================================================
test cases: 3887 | 3886 passed | 1 failed | 299 skipped
assertions: 372817 | 372816 passed | 1 failed | 299 skipped
Skipped tests for the following reasons:
require autocomplete: 15
require block_size: 2
require exact_vector_size: 2
require httpfs: 65
require icu: 46
require inet: 1
require json: 108
require longdouble: 2
require spatial: 5
require tpcds: 6
require tpch: 29
require windows: 3
require-env LOCAL_EXTENSION_REPO: 13
require-env RUN_EXTENSION_UPDATE_TEST: 1
require-env TEST_PERSISTENT_SECRETS_AVAILABLE: 1
make: *** [Makefile:392: unittest_release] Error 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment