fraiseql-wire 2.3.2

Streaming JSON query engine for Postgres 17
Documentation
1
2
3
4
5
6
7
8
use super::*;

#[test]
fn test_json_oids() {
    assert!(is_json_oid(JSON_OID));
    assert!(is_json_oid(JSONB_OID));
    assert!(!is_json_oid(23)); // INT4
}