Skip to main content

USING

Constant USING 

Source
pub const USING: ViewMarker;
Expand description

Specifies a USING clause for materialized views or row-level security policies.

ยงExamples

#[PostgresView(USING = "heap")]
struct ActiveUsers { ... }

#[PostgresPolicy(USING = "tenant_id = current_setting('app.tenant_id')::int")]
struct TenantPolicy(Users);