1
0
mirror of https://github.com/hasura/graphql-engine.git synced 2024-12-20 05:51:54 +03:00
graphql-engine/server/tests-py/queries/v1/track_table/teardown.yaml
Karthikeyan Chinnakonda 7b83018c39 Server: fix issue of not being able to track tables with non-compliant GraphQL names ()
* server: use only the valid tables in the node parser

* add test

GitOrigin-RevId: 90edf001220c7d78eaab86ff565ee4311844b5d3
2021-01-12 08:13:58 +00:00

15 lines
288 B
YAML

type: bulk
args:
- type: run_sql
args:
sql: |
DROP MATERIALIZED VIEW articles;
DROP TABLE hge_tests.resident;
DROP TABLE article;
DROP TABLE author;
DROP TABLE test1;
DROP TABLE test2 CASCADE;
DROP TABLE "users address";
cascade: true