-
It would be nice to be able to exclude partitions but include partitioned tables. Reference: https://www.postgresql.org/docs/current/ddl-partitioning.html
-
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…
-
- [ ] pgloader --version
```
pgloader version "3.6.9"
compiled with SBCL 2.3.8
```
- [ ] did you test a fresh compile from the source tree?
No.
- [ ] did you search …
-
Currently the per-db statistics queries also gather all catalog table information. Change to only gathering things from user tables (`pg_stat_user_tables`) unless the system catalogs are over a certai…
-
### Problem Statement
Some statements always raise an error if an object key is missing:
```
select obj['x'] from tbl
```
Others raise an error at runtime, but only if the table isn't empty…
-
It looks like the `pg_monitor` predefined role is sufficient for pganalyze-collector, so granting access should be as simple as:
```sql
GRANT pg_monitor TO pganalyze;
```
This seems to be suff…
-
> Conceptually, this makes perfect sense, but what is the best way to go about implementing this in practice? Views are a new concept to me.
> ...
> Any further guidance or resources would be much a…
-
### Is this your first time submitting a feature request?
- [X] I have read the [expectations for open source contributors](https://docs.getdbt.com/docs/contributing/oss-expectations)
- [X] I have…
-
At my company we use pg_repack primarily as a tool to delete obsolete historical data or for compliance reasons (e.g. GDPR). Running repack kills two birds with one stone: remove bloat but also remove…
-
Excellent gem and upgraded to Rails 5.2 so all seems to be working well. I was wondering if there is a way for the `rake db:migrate` not to export the functions? For example, we use extensions and the…