graphql-engine/server/tests-py/queries/graphql_query/citus/schema_teardown_citus.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
536 B
YAML
Raw Normal View History

type: bulk
args:
# first, drop functions to avoid 'cannot drop due to the following dependent objects' error.
- type: citus_run_sql
args:
source: citus
sql: |
drop function search_disasters_sql;
drop function search_disasters_plpgsql;
- type: citus_run_sql
args:
source: citus
sql: |
drop table article cascade;
drop table author cascade;
drop table country cascade;
drop table state cascade;
drop table disaster cascade;
drop table disaster_affected_state cascade;