File tree 3 files changed +11
-1
lines changed
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -398,7 +398,7 @@ This will trigger the [Release EQL](https://github.com/cipherstash/encrypt-query
398
398
## Developing
399
399
400
400
> [ !IMPORTANT]
401
- > ** Before you follow the quickstart* you need to have this software installed:
401
+ > ** Before you follow the quickstart** you need to have this software installed:
402
402
> - [ mise] ( https://mise.jdx.dev/ ) — see the [ installing mise] ( #installing-mise ) instructions
403
403
> - [ Docker] ( https://www.docker.com/ ) — see Docker's [ documentation for installing] ( https://docs.docker.com/get-started/get-docker/ )
404
404
Original file line number Diff line number Diff line change @@ -26,5 +26,8 @@ fail_if_postgres_not_running
26
26
# Uninstall
27
27
cat release/cipherstash-encrypt-uninstall.sql | docker exec -i ${container_name} psql ${connection_url} -f-
28
28
29
+ # Wipe test data
30
+ cat tests/999-wipe-test-data.sql | docker exec -i ${container_name} psql ${connection_url} -f-
31
+
29
32
# Install
30
33
cat release/cipherstash-encrypt.sql | docker exec -i ${container_name} psql ${connection_url} -f-
Original file line number Diff line number Diff line change
1
+ -- !!! Only used during tests !!
2
+ -- Fully clean out the database between test runs
3
+
4
+ DROP SCHEMA public CASCADE;
5
+ CREATE SCHEMA public ;
6
+ GRANT ALL ON SCHEMA public TO postgres;
7
+ GRANT ALL ON SCHEMA public TO public;
You can’t perform that action at this time.
0 commit comments