v0.3.8-pre.004-fix.001

This commit is contained in:
2026-09-03 12:33:16 +02:00
parent c4198ac656
commit 3bb73e81e4
6 changed files with 152 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-store-postgres-lib/tests/postgres_raw_transaction_live.rs
// version: 6
// version: 7
#![warn(missing_docs)]
#![deny(unreachable_pub)]
@@ -73,7 +73,10 @@ enum LiveRetentionResult {
#[test]
#[ignore = "opt-in real PostgreSQL RawTransaction proof; reads one dedicated URI from stdin"]
fn pre_009_real_postgres_raw_transaction_vertical_slice_is_atomic_concurrent_and_recoverable() {
eprintln!("KSP Store RawTransaction live proof: reading one dedicated URI from stdin without echoing it from the test.");
eprintln!(
"KSP Store RawTransaction live proof: waiting for one dedicated PostgreSQL URI line on stdin; the scenario does not start until Enter is pressed."
);
eprintln!("KSP Store RawTransaction live proof: the test itself never echoes the URI.");
let uri_result = read_uri_from_stdin();
let uri = match uri_result {
std::result::Result::Ok(value) => value,