factstr-postgres 0.5.0

PostgreSQL store for FACTSTR with append, query, streams, and durable streams.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod support;

use factstr_conformance as store_conformance;

#[test]
fn append_assigns_consecutive_global_sequence_numbers() {
    support::run_store_test(store_conformance::append_assigns_consecutive_global_sequence_numbers);
}

#[test]
fn empty_append_input_returns_typed_error() {
    support::run_store_test(store_conformance::empty_append_input_returns_typed_error);
}