diff --git a/extension/src/stats_agg.rs b/extension/src/stats_agg.rs index a5bf05e6..a440ffc7 100644 --- a/extension/src/stats_agg.rs +++ b/extension/src/stats_agg.rs @@ -1644,13 +1644,19 @@ mod tests { let control = state.unwrap(); let buffer = stats1d_trans_serialize(Inner::from(control.clone()).internal().unwrap()); - let buffer = pgrx::varlena::varlena_to_byte_slice(buffer.0.cast_mut_ptr()); + // let buffer = + // pgrx::varlena::varlena_to_byte_slice(buffer.0.cast_mut_ptr::()); - let expected = pgrx::varlena::rust_byte_slice_to_bytea(buffer); - let new_state = - stats1d_trans_deserialize_inner(bytea(pg_sys::Datum::from(expected.as_ptr()))); + // let expected = pgrx::varlena::rust_byte_slice_to_bytea(buffer); + // let new_state = + // stats1d_trans_deserialize_inner(bytea(pg_sys::Datum::from(expected.as_ptr()))); + let new_state = stats1d_trans_deserialize_inner(buffer); - assert_eq!(&*new_state, &*control); + assert_eq!( + &*new_state, &*control, + "unexpected difference in bytes output, got:\n{:?}\nexpected:\n{:?}", + &*new_state, &*control + ); } } diff --git a/tools/build b/tools/build index 0b1a6682..a7d38b9b 100755 --- a/tools/build +++ b/tools/build @@ -104,9 +104,9 @@ while [ $# -gt 0 ]; do $nop cargo fetch export RUSTC_BOOTSTRAP=1 export __CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS=nightly - export RUSTFLAGS='-Z sanitizer=memory' + # export RUSTFLAGS='-Z sanitizer=memory' rustup component add rust-src --toolchain 1.74.0-x86_64-unknown-linux-gnu - $nop cargo test -Zbuild-std --profile $profile --target --target x86_64-unknown-linux-gnu --features "$pg pg_test" --no-default-features -- stats_agg::tests + $nop cargo test -Zbuild-std --profile $profile --target --target x86_64-unknown-linux-gnu --features "$pg pg_test" --no-default-features -- --nocapture stats_agg::tests ;; install)