1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Use better fake db name

This commit is contained in:
jbranchaud
2016-02-21 14:35:06 -06:00
parent fc7307a5ac
commit 5a82c39f8e

View File

@@ -29,7 +29,7 @@ following:
```sql
select pg_terminate_backend(pg_stat_activity.pid)
from pg_stat_activity
where pg_stat_activity.datname = 'test_drop'
where pg_stat_activity.datname = 'sample_db'
and pid <> pg_backend_pid();
pg_terminate_backend
----------------------