graphql-engine/server/tests-py/queries/graphql_query/boolexp/basic/teardown.yaml
Alexis King 25c5f97de2 Fix new hdb_table_info_agg query to fetch column base types
We mostly want to do this to make queries against information_schema
tables work, which the console cares about. information_schema tables
use types like sql_identifier, which have no corresponding array types
defined! Therefore, in order to generate valid queries for _in and _nin
conditions, we need to treat them as their base types, instead.
2020-01-08 16:45:54 -06:00

16 lines
318 B
YAML

type: bulk
args:
- type: run_sql
args:
sql: |
DROP TABLE table_with_sql_identifier;
DROP TABLE article;
DROP TABLE author;
DROP TABLE city;
DROP TABLE orders;
DROP TABLE message;
DROP TABLE uuid_test;
DROP TABLE "user";
DROP TABLE account;
cascade: true