diff options
author | Evgeny Khramtsov <ekhramtsov@process-one.net> | 2019-10-31 11:00:02 +0300 |
---|---|---|
committer | Evgeny Khramtsov <ekhramtsov@process-one.net> | 2019-10-31 11:00:02 +0300 |
commit | 116c33f7e14f8ed1e2b2106a4f79fecdb17319ec (patch) | |
tree | 0c762f5035ab9209abe6692b79e05b827971dc37 | |
parent | Revert "Escape 'family' field in SQL requests" (diff) |
Grant all privileges on all sequences for PostgreSQL in tests
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 0262a53f3..bf6267844 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,6 +40,7 @@ before_script: - psql -U postgres ejabberd_test -f sql/pg.sql - psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE ejabberd_test TO ejabberd_test;" - psql -U postgres ejabberd_test -c "GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO ejabberd_test;" + - psql -U postgres ejabberd_test -c "GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO ejabberd_test;" script: - ./autogen.sh |