mirror of
https://github.com/d3vyce/sqlalchemy-pgview.git
synced 2026-08-05 05:04:07 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# `CreateMaterializedView` class
|
||||
|
||||
DDL element to create a PostgreSQL materialized view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import CreateMaterializedView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.CreateMaterializedView
|
||||
@@ -0,0 +1,9 @@
|
||||
# `CreateView` class
|
||||
|
||||
DDL element to create a PostgreSQL view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import CreateView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.CreateView
|
||||
@@ -0,0 +1,12 @@
|
||||
# `DropMaterializedView` class
|
||||
|
||||
DDL element to drop a PostgreSQL materialized view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import DropMaterializedView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.DropMaterializedView
|
||||
options:
|
||||
members:
|
||||
- fullname
|
||||
@@ -0,0 +1,12 @@
|
||||
# `DropView` class
|
||||
|
||||
DDL element to drop a PostgreSQL view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import DropView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.DropView
|
||||
options:
|
||||
members:
|
||||
- fullname
|
||||
@@ -0,0 +1,12 @@
|
||||
# `RefreshMaterializedView` class
|
||||
|
||||
DDL element to refresh a PostgreSQL materialized view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import RefreshMaterializedView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.RefreshMaterializedView
|
||||
options:
|
||||
members:
|
||||
- fullname
|
||||
Reference in New Issue
Block a user