-
We implemented support for views via https://github.com/prisma/prisma/issues/678 and https://github.com/prisma/prisma/issues/17335, but as materialized views are special (they need some Client API and…
-
https://www.postgresql.org/docs/9.3/rules-materializedviews.html
This is a classic RDBMS feature that you tend to discover you need only a few years into a successful project, after you hire a DBA …
-
-
It would be useful to be able to schedule a materialized view refresh every X seconds. The scheduled jobs framework is general enough to support this, but we need a front-end.
This may be a solutio…
-
The documentation does mention that Views are not supported. It looks like Materialized Views are also not supported, though they are more like tables than views. We can create indexes, they contain d…
-
### What version of `drizzle-orm` are you using?
0.35.2
### What version of `drizzle-kit` are you using?
0.26.2
### Describe the Bug
Create 1 or more views using any of `pgMaterializedView` or `m…
-
I would like to report an issue on page https://opensource.docs.scylladb.com/branch-6.1/cql/mv
The page suggests that view names need to fit:
```
view_name: re('[a-zA-Z_0-9]+')
```
But this…
-
### Steps to reproduce the behavior (Required)
SHOW MATERIALIZED VIEWS
### Expected behavior (Required)
should output complete information for all MVs
### Real behavior (Required)
multipl…
-
### Describe what you want
Hi everyone, I'd love to be able to use the drizzle relations with materialized views, like:
```
export const theCoolestView = pgMaterializedView("the_coolest_view", {
…
-
## Is your feature request related to a problem?
When dealing with high cardinality data, Materialized Views (MVs) can become excessively large and inefficient, leading to significant performance a…