Zach Marine
Zach Marine
**Summary** Postgres doesn't like dashes in identifiers. To solve this, we can double-quote identifiers. We currently do this for tables and rolenames, but we don't do it for schemas. As...
As other devs being to add features to pgbedrock, it would be helpful to have more detailed docstrings, similar to [datasheets](https://github.com/Squarespace/datasheets): show the arg types and their return types. If...
Currently we support the `myschema.*` pattern, which expands to all objects in `myschema` of the relevant object kind (e.g. tables or sequences). A common request is to support arbitrary regex...
Currently personal schemas are supported as a first-class citizen throughout all of pgbedrock's code base. Once table and sequence ownership are supported, we can instead just translate the user's spec...
**Summary** pgbedrock currently ignores the access that a schema owner has to the schema it owns. If `zmarine` owns a schema `zmtest`, then pgbedrock will take no action whether or...
**Summary** At present pgbedrock is intended to configure a single database per spec, but this is kind of a strange compromise: roles and role memberships are at the Postgres instance...