-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaterializedViewType.cs
More file actions
25 lines (23 loc) · 855 Bytes
/
Copy pathMaterializedViewType.cs
File metadata and controls
25 lines (23 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace Birko.Data.SQL
{
/// <summary>
/// Specifies the type of materialized/indexed view support available for a database provider.
/// </summary>
public enum MaterializedViewType
{
/// <summary>
/// No materialized or indexed view support.
/// </summary>
None = 0,
/// <summary>
/// PostgreSQL materialized views (CREATE MATERIALIZED VIEW).
/// Stores query results physically; must be refreshed manually via REFRESH MATERIALIZED VIEW.
/// </summary>
PostgreSqlMaterialized = 1,
/// <summary>
/// SQL Server indexed views (CREATE VIEW ... WITH SCHEMABINDING + clustered index).
/// Persists computed results; automatically maintained by the engine on underlying data changes.
/// </summary>
MSSqlIndexed = 2
}
}