graphql-engine/server/tests-py/queries/compression/setup.yaml

14 lines
248 B
YAML
Raw Normal View History

type: bulk
args:
- type: run_sql
args:
sql: |
CREATE TABLE test (id serial primary key, name text);
INSERT INTO test (name) values ('Gzip'), ('Brotli'), ('Nothing');
- type: track_table
args:
schema: public
name: test