uqa-sql 0.3.5

PostgreSQL-compatible SQL compiler built on libpg_query
Documentation
1
2
3
4
5
6
7
8
9
10
11
//
// Unified Query Algebra
//
// Copyright (c) 2023-2026 Cognica, Inc.
//

//! Read-only schema authority shared by relation ownership checks.
use super::SchemaSecurity;
pub trait RelationOwnerSchemas {
    fn schema_security(&self, schema: &str) -> Option<SchemaSecurity>;
}