Skip to content

Commit 18f99b7

Browse files
committed
WIP:
1 parent cfa78bf commit 18f99b7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

extension/src/stats_agg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1650,7 +1650,7 @@ mod tests {
16501650
let new_state =
16511651
stats1d_trans_deserialize_inner(bytea(pg_sys::Datum::from(expected.as_ptr())));
16521652

1653-
assert_eq!(&*new_state, &*control);
1653+
assert_eq!(&*new_state, &*control, "unexpected difference in bytes output, got:\n{:?}\nexpected:\n{:?}", &*new_state, &*control);
16541654
}
16551655
}
16561656

tools/build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ while [ $# -gt 0 ]; do
104104
$nop cargo fetch
105105
export RUSTC_BOOTSTRAP=1
106106
export __CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS=nightly
107-
export RUSTFLAGS='-Z sanitizer=memory'
107+
# export RUSTFLAGS='-Z sanitizer=memory'
108108
rustup component add rust-src --toolchain 1.74.0-x86_64-unknown-linux-gnu
109-
$nop cargo test -Zbuild-std --profile $profile --target --target x86_64-unknown-linux-gnu --features "$pg pg_test" --no-default-features -- stats_agg::tests
109+
$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
110110
;;
111111

112112
install)

0 commit comments

Comments
 (0)