nodedb 0.3.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: BUSL-1.1

//! Shim that re-exports the shared test harness from
//! `nodedb-test-support`. The real implementation lives there so the
//! cluster integration test crate (`nodedb-cluster-tests`) can share
//! it without duplication. Per-file `pub use` lines preserve the
//! `common::pgwire_harness::TestServer` paths the existing tests use.

#[allow(unused_imports)]
pub use nodedb_test_support::{
    array_sync, cluster_harness, make_cdc_event, now_ms, pgwire_auth_helpers, pgwire_harness,
    tx_batch_helpers,
};