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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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