graphql-engine/server/tests-py/queries/graphql_query/functions/teardown.yaml
Rakesh Emmadi d9fb0f8780 use named notation for function arguments if any argument is not specified (fix #2730) (#2777)
* use positional arguments in SQL functions
* only allow omitting set of last arguments in functions
* disallow omitting of a non default argument in functions
2019-08-28 14:27:15 -05:00

12 lines
245 B
YAML

type: bulk
args:
#Drop table and function from postgres
- type: run_sql
args:
sql: |
DROP TABLE post cascade;
DROP TABLE test cascade;
DROP TABLE integer_column cascade;
DROP TABLE "user" cascade;
cascade: true