graphql-engine/server/tests-py/queries/v1/ddl/drop_no_cols_table.yaml
Rakesh Emmadi a2cf9a53c2 server: move to storing metadata as a json blob (#115)
GitOrigin-RevId: 3d1a7618a4ec086c2d255549a6c15087201e9ab0
2020-12-08 14:23:28 +00:00

22 lines
413 B
YAML

url: /v1/query
status: 200
response:
- {result: null, result_type: CommandOk}
- {message: success}
- {result: null, result_type: CommandOk}
query:
type: bulk
args:
- type: run_sql
args:
sql: |
create table hge_tests.t ();
- type: track_table
args:
schema: hge_tests
name: t
- type: run_sql
args:
sql: |
drop table hge_tests.t;