feophant 0.9.0

A SQL database server written in Rust and inspired by PostreSQL
Documentation
1
2
3
4
5
6
7
8
9
10
//! Shows the values of valid transactions for use in visibility checks
//! See rules here: http://www.interdb.jp/pg/pgsql05.html#_5.5.
use super::TransactionId;

#[derive(Clone, Debug)]
pub struct TransactionSnapshot {
    pub min: TransactionId,
    pub max: TransactionId,
    pub in_range: Vec<TransactionId>,
}