|
|
|
|
|
by arthurschreiber
1731 days ago
|
|
We could enable the linter in production to silently log problematic queries without actually affecting their execution. If we used separate db users as you're suggesting, any query that we didn't catch beforehand (e.g. via our CI builds) would cause noticeable problems for our users, which is something that we want to avoid. Additionally, switching to a separate user account would require holding open twice the amount of connections to each database server (old db user plus new db user), which probably would be fine but is still a lot of additional connections at our scale. |
|