-
Hello guys
Do you have plans on creating **Materialized Views** for this MySQL gem?
Maybe using an approach to deal with it? Since the MySQL doesn't have it naturally
Thanks
-
This VS Code extension is fantastic. One thing I noticed recently is that I am unable to see materialized views that live in my BigQuery environment. I can see `Routines`, `Views`, and `Tables` seamle…
-
### Proposed Change
A materialized view is a common concept in Database Management Systems that stores a query definition as a logical table. The query is precomputed and the resulting data is serv…
-
Currently it is not possible to add indexes on materialized views.
The [documentation](https://orm.drizzle.team/docs/indexes-constraints#indexes) explains quite well how to create indexes on tables…
-
Flesh out materialized views started on `bitemyapp/materialized-view-example`
-
It would be nice to have a mechanism that maintains materialized views produced by an ORDER BY clause in actual sorted order.
-
### Provide the Bytebase version you are using
3.0.0
### Describe the bug
Schema synchronization does not sync materialized views using pgsql. The Schema change contain the MV but not the created i…
-
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 …
-
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…
-
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…